From cae5245792f2e8b3392a8c8847a48f948ee13261 Mon Sep 17 00:00:00 2001 From: ilhom Date: Wed, 1 Jul 2026 09:19:12 +0700 Subject: [PATCH 01/12] chore(gen): regenerate for permission menu_id --- src/types/generated/iam/v1/role.ts | 134 ++++++++++++++++++++++++++++- 1 file changed, 131 insertions(+), 3 deletions(-) diff --git a/src/types/generated/iam/v1/role.ts b/src/types/generated/iam/v1/role.ts index 1f7ef0b..8187df8 100644 --- a/src/types/generated/iam/v1/role.ts +++ b/src/types/generated/iam/v1/role.ts @@ -157,7 +157,13 @@ export interface PermissionDetail { isActive: boolean; /** Number of roles with this permission */ roleCount: number; - audit: AuditInfo | undefined; + audit: + | AuditInfo + | undefined; + /** Owning page/menu (empty = global/ungrouped) */ + menuId: string; + /** Read-only, joined from mst_menu for display */ + menuTitle: string; } export interface CreatePermissionRequest { @@ -172,6 +178,8 @@ export interface CreatePermissionRequest { moduleName: string; /** Action type: view, create, update, delete, export, import */ actionType: string; + /** Owning page/menu UUID. Empty = global/ungrouped permission. */ + menuId: string; } export interface CreatePermissionResponse { @@ -193,6 +201,7 @@ export interface UpdatePermissionRequest { permissionName?: string | undefined; description?: string | undefined; isActive?: boolean | undefined; + menuId?: string | undefined; } export interface UpdatePermissionResponse { @@ -221,6 +230,8 @@ export interface ListPermissionsRequest { actionType: string; sortBy: string; sortOrder: string; + /** Filter by menu_id (owning page/menu) */ + menuId: string; } export interface ListPermissionsResponse { @@ -2467,6 +2478,8 @@ function createBasePermissionDetail(): PermissionDetail { isActive: false, roleCount: 0, audit: undefined, + menuId: "", + menuTitle: "", }; } @@ -2502,6 +2515,12 @@ export const PermissionDetail: MessageFns = { if (message.audit !== undefined) { AuditInfo.encode(message.audit, writer.uint32(82).fork()).join(); } + if (message.menuId !== "") { + writer.uint32(90).string(message.menuId); + } + if (message.menuTitle !== "") { + writer.uint32(98).string(message.menuTitle); + } return writer; }, @@ -2592,6 +2611,22 @@ export const PermissionDetail: MessageFns = { message.audit = AuditInfo.decode(reader, reader.uint32()); continue; } + case 11: { + if (tag !== 90) { + break; + } + + message.menuId = reader.string(); + continue; + } + case 12: { + if (tag !== 98) { + break; + } + + message.menuTitle = reader.string(); + continue; + } } if ((tag & 7) === 4 || tag === 0) { break; @@ -2645,6 +2680,16 @@ export const PermissionDetail: MessageFns = { ? globalThis.Number(object.role_count) : 0, audit: isSet(object.audit) ? AuditInfo.fromJSON(object.audit) : undefined, + menuId: isSet(object.menuId) + ? globalThis.String(object.menuId) + : isSet(object.menu_id) + ? globalThis.String(object.menu_id) + : "", + menuTitle: isSet(object.menuTitle) + ? globalThis.String(object.menuTitle) + : isSet(object.menu_title) + ? globalThis.String(object.menu_title) + : "", }; }, @@ -2680,6 +2725,12 @@ export const PermissionDetail: MessageFns = { if (message.audit !== undefined) { obj.audit = AuditInfo.toJSON(message.audit); } + if (message.menuId !== "") { + obj.menuId = message.menuId; + } + if (message.menuTitle !== "") { + obj.menuTitle = message.menuTitle; + } return obj; }, @@ -2700,12 +2751,22 @@ export const PermissionDetail: MessageFns = { message.audit = (object.audit !== undefined && object.audit !== null) ? AuditInfo.fromPartial(object.audit) : undefined; + message.menuId = object.menuId ?? ""; + message.menuTitle = object.menuTitle ?? ""; return message; }, }; function createBaseCreatePermissionRequest(): CreatePermissionRequest { - return { permissionCode: "", permissionName: "", description: "", serviceName: "", moduleName: "", actionType: "" }; + return { + permissionCode: "", + permissionName: "", + description: "", + serviceName: "", + moduleName: "", + actionType: "", + menuId: "", + }; } export const CreatePermissionRequest: MessageFns = { @@ -2728,6 +2789,9 @@ export const CreatePermissionRequest: MessageFns = { if (message.actionType !== "") { writer.uint32(50).string(message.actionType); } + if (message.menuId !== "") { + writer.uint32(58).string(message.menuId); + } return writer; }, @@ -2786,6 +2850,14 @@ export const CreatePermissionRequest: MessageFns = { message.actionType = reader.string(); continue; } + case 7: { + if (tag !== 58) { + break; + } + + message.menuId = reader.string(); + continue; + } } if ((tag & 7) === 4 || tag === 0) { break; @@ -2823,6 +2895,11 @@ export const CreatePermissionRequest: MessageFns = { : isSet(object.action_type) ? globalThis.String(object.action_type) : "", + menuId: isSet(object.menuId) + ? globalThis.String(object.menuId) + : isSet(object.menu_id) + ? globalThis.String(object.menu_id) + : "", }; }, @@ -2846,6 +2923,9 @@ export const CreatePermissionRequest: MessageFns = { if (message.actionType !== "") { obj.actionType = message.actionType; } + if (message.menuId !== "") { + obj.menuId = message.menuId; + } return obj; }, @@ -2860,6 +2940,7 @@ export const CreatePermissionRequest: MessageFns = { message.serviceName = object.serviceName ?? ""; message.moduleName = object.moduleName ?? ""; message.actionType = object.actionType ?? ""; + message.menuId = object.menuId ?? ""; return message; }, }; @@ -3089,7 +3170,13 @@ export const GetPermissionResponse: MessageFns = { }; function createBaseUpdatePermissionRequest(): UpdatePermissionRequest { - return { permissionId: "", permissionName: undefined, description: undefined, isActive: undefined }; + return { + permissionId: "", + permissionName: undefined, + description: undefined, + isActive: undefined, + menuId: undefined, + }; } export const UpdatePermissionRequest: MessageFns = { @@ -3106,6 +3193,9 @@ export const UpdatePermissionRequest: MessageFns = { if (message.isActive !== undefined) { writer.uint32(32).bool(message.isActive); } + if (message.menuId !== undefined) { + writer.uint32(42).string(message.menuId); + } return writer; }, @@ -3148,6 +3238,14 @@ export const UpdatePermissionRequest: MessageFns = { message.isActive = reader.bool(); continue; } + case 5: { + if (tag !== 42) { + break; + } + + message.menuId = reader.string(); + continue; + } } if ((tag & 7) === 4 || tag === 0) { break; @@ -3175,6 +3273,11 @@ export const UpdatePermissionRequest: MessageFns = { : isSet(object.is_active) ? globalThis.Boolean(object.is_active) : undefined, + menuId: isSet(object.menuId) + ? globalThis.String(object.menuId) + : isSet(object.menu_id) + ? globalThis.String(object.menu_id) + : undefined, }; }, @@ -3192,6 +3295,9 @@ export const UpdatePermissionRequest: MessageFns = { if (message.isActive !== undefined) { obj.isActive = message.isActive; } + if (message.menuId !== undefined) { + obj.menuId = message.menuId; + } return obj; }, @@ -3204,6 +3310,7 @@ export const UpdatePermissionRequest: MessageFns = { message.permissionName = object.permissionName ?? undefined; message.description = object.description ?? undefined; message.isActive = object.isActive ?? undefined; + message.menuId = object.menuId ?? undefined; return message; }, }; @@ -3423,6 +3530,7 @@ function createBaseListPermissionsRequest(): ListPermissionsRequest { actionType: "", sortBy: "", sortOrder: "", + menuId: "", }; } @@ -3455,6 +3563,9 @@ export const ListPermissionsRequest: MessageFns = { if (message.sortOrder !== "") { writer.uint32(74).string(message.sortOrder); } + if (message.menuId !== "") { + writer.uint32(82).string(message.menuId); + } return writer; }, @@ -3537,6 +3648,14 @@ export const ListPermissionsRequest: MessageFns = { message.sortOrder = reader.string(); continue; } + case 10: { + if (tag !== 82) { + break; + } + + message.menuId = reader.string(); + continue; + } } if ((tag & 7) === 4 || tag === 0) { break; @@ -3585,6 +3704,11 @@ export const ListPermissionsRequest: MessageFns = { : isSet(object.sort_order) ? globalThis.String(object.sort_order) : "", + menuId: isSet(object.menuId) + ? globalThis.String(object.menuId) + : isSet(object.menu_id) + ? globalThis.String(object.menu_id) + : "", }; }, @@ -3617,6 +3741,9 @@ export const ListPermissionsRequest: MessageFns = { if (message.sortOrder !== "") { obj.sortOrder = message.sortOrder; } + if (message.menuId !== "") { + obj.menuId = message.menuId; + } return obj; }, @@ -3634,6 +3761,7 @@ export const ListPermissionsRequest: MessageFns = { message.actionType = object.actionType ?? ""; message.sortBy = object.sortBy ?? ""; message.sortOrder = object.sortOrder ?? ""; + message.menuId = object.menuId ?? ""; return message; }, }; From 2ecb911b80917eb15fd7462deeef97c3c4a8b1f8 Mon Sep 17 00:00:00 2001 From: ilhom Date: Wed, 1 Jul 2026 09:25:38 +0700 Subject: [PATCH 02/12] chore(gen): regenerate for permission menu_id validation update --- src/types/generated/finance/v1/bi.ts | 1482 +++++++- .../generated/finance/v1/cost_attachment.ts | 335 +- .../generated/finance/v1/cost_audit_log.ts | 43 +- .../finance/v1/cost_fill_assignment.ts | 421 ++- .../generated/finance/v1/cost_notification.ts | 240 +- .../finance/v1/cost_paper_tube_type.ts | 49 +- .../finance/v1/cost_product_request.ts | 1830 +++++++++- .../generated/finance/v1/cost_product_type.ts | 374 +- .../finance/v1/cost_request_comment.ts | 467 ++- .../generated/finance/v1/cost_rm_type.ts | 190 +- .../generated/finance/v1/cost_routing_rule.ts | 266 +- src/types/generated/finance/v1/formula.ts | 359 +- src/types/generated/finance/v1/parameter.ts | 369 +- src/types/generated/finance/v1/rm_category.ts | 411 ++- src/types/generated/finance/v1/rm_cost.ts | 623 +++- src/types/generated/finance/v1/rm_group.ts | 873 ++++- src/types/generated/finance/v1/uom.ts | 315 +- .../generated/finance/v1/uom_category.ts | 422 ++- src/types/generated/finance/v1/yarn_master.ts | 3109 ++++++++++++++++- src/types/generated/iam/v1/audit.ts | 160 +- src/types/generated/iam/v1/auth.ts | 657 +++- src/types/generated/iam/v1/cms.ts | 720 +++- src/types/generated/iam/v1/company_mapping.ts | 269 +- src/types/generated/iam/v1/employee_group.ts | 404 ++- src/types/generated/iam/v1/employee_level.ts | 690 +++- src/types/generated/iam/v1/menu.ts | 552 ++- src/types/generated/iam/v1/notification.ts | 463 ++- src/types/generated/iam/v1/organization.ts | 1401 +++++++- src/types/generated/iam/v1/role.ts | 845 ++++- src/types/generated/iam/v1/session.ts | 127 +- src/types/generated/iam/v1/user.ts | 862 ++++- src/types/generated/iam/v1/workflow.ts | 602 +++- 32 files changed, 19533 insertions(+), 397 deletions(-) diff --git a/src/types/generated/finance/v1/bi.ts b/src/types/generated/finance/v1/bi.ts index dd196b5..70add23 100644 --- a/src/types/generated/finance/v1/bi.ts +++ b/src/types/generated/finance/v1/bi.ts @@ -10170,7 +10170,49 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: CreateDashboardResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 58, + 1, + 42, + 34, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + ]), + ], + }, + }, }, /** GetDashboard returns a dashboard by ID. */ getDashboard: { @@ -10179,7 +10221,61 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: GetDashboardResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 18, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 123, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** GetDashboardByCode returns a dashboard by its business code. */ getDashboardByCode: { @@ -10188,7 +10284,71 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: GetDashboardByCodeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 56, + 18, + 54, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 98, + 121, + 45, + 99, + 111, + 100, + 101, + 47, + 123, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 95, + 99, + 111, + 100, + 101, + 125, + ]), + ], + }, + }, }, /** ListDashboards returns paginated dashboards for admin. */ listDashboards: { @@ -10197,7 +10357,46 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListDashboardsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + ]), + ], + }, + }, }, /** UpdateDashboard mutates an existing dashboard. */ updateDashboard: { @@ -10206,7 +10405,64 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: UpdateDashboardResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 58, + 1, + 42, + 26, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 123, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteDashboard soft-deletes a dashboard. */ deleteDashboard: { @@ -10215,7 +10471,61 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: DeleteDashboardResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 42, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 123, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DuplicateDashboard clones a dashboard with a new code/title. */ duplicateDashboard: { @@ -10224,7 +10534,74 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: DuplicateDashboardResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 59, + 58, + 1, + 42, + 34, + 54, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 123, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 95, + 105, + 100, + 125, + 47, + 100, + 117, + 112, + 108, + 105, + 99, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** SetDashboardRoles overwrites the dashboard's role whitelist. */ setDashboardRoles: { @@ -10233,7 +10610,70 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: SetDashboardRolesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 55, + 58, + 1, + 42, + 26, + 50, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 123, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 95, + 105, + 100, + 125, + 47, + 114, + 111, + 108, + 101, + 115, + ]), + ], + }, + }, }, /** ListAccessibleDashboards returns dashboards visible to the calling user (for viewer sidebar). */ listAccessibleDashboards: { @@ -10242,7 +10682,57 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListAccessibleDashboardsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 18, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 97, + 99, + 99, + 101, + 115, + 115, + 105, + 98, + 108, + 101, + ]), + ], + }, + }, }, /** ListFeaturedDashboards returns dashboards pinned to the Executive Dashboard landing page. */ listFeaturedDashboards: { @@ -10251,7 +10741,55 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListFeaturedDashboardsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 40, + 18, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 102, + 101, + 97, + 116, + 117, + 114, + 101, + 100, + ]), + ], + }, + }, }, /** CreateDashboardGroup creates a new dashboard group. */ createDashboardGroup: { @@ -10260,7 +10798,45 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: CreateDashboardGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 58, + 1, + 42, + 34, + 25, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 103, + 114, + 111, + 117, + 112, + 115, + ]), + ], + }, + }, }, /** ListDashboardGroups returns dashboard groups. */ listDashboardGroups: { @@ -10269,7 +10845,42 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListDashboardGroupsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 27, + 18, + 25, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 103, + 114, + 111, + 117, + 112, + 115, + ]), + ], + }, + }, }, /** UpdateDashboardGroup mutates a group. */ updateDashboardGroup: { @@ -10278,7 +10889,56 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: UpdateDashboardGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 58, + 1, + 42, + 26, + 36, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteDashboardGroup soft-deletes a group. */ deleteDashboardGroup: { @@ -10287,7 +10947,53 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: DeleteDashboardGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 42, + 36, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListConfigAudit returns the dashboard/group configuration change history. */ listConfigAudit: { @@ -10296,7 +11002,41 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListConfigAuditResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 97, + 117, + 100, + 105, + 116, + ]), + ], + }, + }, }, }, } as const; @@ -10314,7 +11054,68 @@ export const ChartDataServiceDefinition = { requestStream: false, responseType: GetDashboardDataResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 53, + 18, + 51, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 115, + 47, + 123, + 100, + 97, + 115, + 104, + 98, + 111, + 97, + 114, + 100, + 95, + 99, + 111, + 100, + 101, + 125, + 47, + 100, + 97, + 116, + 97, + ]), + ], + }, + }, }, /** PreviewDashboard renders an unsaved dashboard config against real fact data (admin only). */ previewDashboard: { @@ -10323,7 +11124,46 @@ export const ChartDataServiceDefinition = { requestStream: false, responseType: PreviewDashboardResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 58, + 1, + 42, + 34, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 112, + 114, + 101, + 118, + 105, + 101, + 119, + ]), + ], + }, + }, }, }, } as const; @@ -10341,7 +11181,48 @@ export const DataSourceServiceDefinition = { requestStream: false, responseType: ListDataSourcesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 100, + 97, + 116, + 97, + 45, + 115, + 111, + 117, + 114, + 99, + 101, + 115, + ]), + ], + }, + }, }, /** GetFactDistincts returns distinct type/group_1/group_2/group_3 values for an optional type filter. */ getFactDistincts: { @@ -10350,7 +11231,50 @@ export const DataSourceServiceDefinition = { requestStream: false, responseType: GetFactDistinctsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 102, + 97, + 99, + 116, + 47, + 100, + 105, + 115, + 116, + 105, + 110, + 99, + 116, + 115, + ]), + ], + }, + }, }, }, } as const; @@ -10368,7 +11292,40 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: ListJobsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 25, + 18, + 23, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 106, + 111, + 98, + 115, + ]), + ], + }, + }, }, /** ListJobLogs returns logs for a specific job. */ listJobLogs: { @@ -10377,7 +11334,54 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: ListJobLogsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 106, + 111, + 98, + 115, + 47, + 123, + 106, + 111, + 98, + 95, + 105, + 100, + 125, + 47, + 108, + 111, + 103, + 115, + ]), + ], + }, + }, }, /** TriggerJob manually triggers an ETL job run. */ triggerJob: { @@ -10386,7 +11390,60 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: TriggerJobResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 58, + 1, + 42, + 34, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 106, + 111, + 98, + 115, + 47, + 123, + 106, + 111, + 98, + 95, + 105, + 100, + 125, + 47, + 116, + 114, + 105, + 103, + 103, + 101, + 114, + ]), + ], + }, + }, }, /** CreateBiJob registers a new ETL job in the bi_job registry. */ createBiJob: { @@ -10395,7 +11452,43 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: CreateBiJobResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 58, + 1, + 42, + 34, + 23, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 106, + 111, + 98, + 115, + ]), + ], + }, + }, }, /** UpdateBiJob mutates schedule_cron, oracle_procedure, config, or is_active. */ updateBiJob: { @@ -10404,7 +11497,52 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: UpdateBiJobResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 26, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 106, + 111, + 98, + 115, + 47, + 123, + 106, + 111, + 98, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteBiJob soft-disables a job (sets is_active=false, preserves logs). */ deleteBiJob: { @@ -10413,7 +11551,49 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: DeleteBiJobResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 42, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 106, + 111, + 98, + 115, + 47, + 123, + 106, + 111, + 98, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, }, } as const; @@ -10434,7 +11614,52 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: DownloadUploadTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 18, + 35, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 117, + 112, + 108, + 111, + 97, + 100, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** ParseUpload parses an uploaded .xlsx, validates rows, writes to staging, returns a preview. */ parseUpload: { @@ -10443,7 +11668,52 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: ParseUploadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 34, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 117, + 112, + 108, + 111, + 97, + 100, + 115, + 47, + 112, + 97, + 114, + 115, + 101, + ]), + ], + }, + }, }, /** CommitUpload UPSERTs the staged rows of a previewed session into fact_metric. */ commitUpload: { @@ -10452,7 +11722,65 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: CommitUploadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 58, + 1, + 42, + 34, + 45, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 117, + 112, + 108, + 111, + 97, + 100, + 115, + 47, + 123, + 117, + 112, + 108, + 111, + 97, + 100, + 95, + 105, + 100, + 125, + 47, + 99, + 111, + 109, + 109, + 105, + 116, + ]), + ], + }, + }, }, /** CancelUpload discards a previewed session without committing. */ cancelUpload: { @@ -10461,7 +11789,65 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: CancelUploadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 58, + 1, + 42, + 34, + 45, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 117, + 112, + 108, + 111, + 97, + 100, + 115, + 47, + 123, + 117, + 112, + 108, + 111, + 97, + 100, + 95, + 105, + 100, + 125, + 47, + 99, + 97, + 110, + 99, + 101, + 108, + ]), + ], + }, + }, }, /** ListUploads returns paginated upload session history. */ listUploads: { @@ -10470,7 +11856,43 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: ListUploadsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 18, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 105, + 47, + 117, + 112, + 108, + 111, + 97, + 100, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_attachment.ts b/src/types/generated/finance/v1/cost_attachment.ts index 7dd73a1..a6cb0e4 100644 --- a/src/types/generated/finance/v1/cost_attachment.ts +++ b/src/types/generated/finance/v1/cost_attachment.ts @@ -1106,7 +1106,59 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: UploadCostAttachmentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 34, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 97, + 116, + 116, + 97, + 99, + 104, + 109, + 101, + 110, + 116, + 115, + 47, + 117, + 112, + 108, + 111, + 97, + 100, + ]), + ], + }, + }, }, listCostAttachmentsByRequest: { name: "ListCostAttachmentsByRequest", @@ -1114,7 +1166,79 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: ListCostAttachmentsByRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 64, + 18, + 62, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 97, + 116, + 116, + 97, + 99, + 104, + 109, + 101, + 110, + 116, + 115, + ]), + ], + }, + }, }, listCostAttachmentsByComment: { name: "ListCostAttachmentsByComment", @@ -1122,7 +1246,79 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: ListCostAttachmentsByCommentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 64, + 18, + 62, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + 47, + 97, + 116, + 116, + 97, + 99, + 104, + 109, + 101, + 110, + 116, + 115, + ]), + ], + }, + }, }, getCostAttachmentDownloadURL: { name: "GetCostAttachmentDownloadURL", @@ -1130,7 +1326,78 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: GetCostAttachmentDownloadURLResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 63, + 18, + 61, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 97, + 116, + 116, + 97, + 99, + 104, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 97, + 116, + 116, + 97, + 99, + 104, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + 47, + 100, + 111, + 119, + 110, + 108, + 111, + 97, + 100, + 45, + 117, + 114, + 108, + ]), + ], + }, + }, }, deleteCostAttachment: { name: "DeleteCostAttachment", @@ -1138,7 +1405,65 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: DeleteCostAttachmentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 42, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 97, + 116, + 116, + 97, + 99, + 104, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 97, + 116, + 116, + 97, + 99, + 104, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_audit_log.ts b/src/types/generated/finance/v1/cost_audit_log.ts index 2b2ed85..1284b31 100644 --- a/src/types/generated/finance/v1/cost_audit_log.ts +++ b/src/types/generated/finance/v1/cost_audit_log.ts @@ -534,7 +534,48 @@ export const CostAuditLogServiceDefinition = { requestStream: false, responseType: ListCostAuditLogsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 97, + 117, + 100, + 105, + 116, + 45, + 108, + 111, + 103, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_fill_assignment.ts b/src/types/generated/finance/v1/cost_fill_assignment.ts index f1868b0..3244b14 100644 --- a/src/types/generated/finance/v1/cost_fill_assignment.ts +++ b/src/types/generated/finance/v1/cost_fill_assignment.ts @@ -2499,7 +2499,48 @@ export const CostLevelAssignmentConfigServiceDefinition = { requestStream: false, responseType: UpsertLevelConfigResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 58, + 1, + 42, + 26, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 99, + 111, + 110, + 102, + 105, + 103, + 115, + ]), + ], + }, + }, }, /** DeleteGlobalConfig removes the global-tier config for a route level. */ deleteGlobalConfig: { @@ -2508,7 +2549,66 @@ export const CostLevelAssignmentConfigServiceDefinition = { requestStream: false, responseType: DeleteGlobalConfigResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 42, + 49, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 99, + 111, + 110, + 102, + 105, + 103, + 115, + 47, + 103, + 108, + 111, + 98, + 97, + 108, + 47, + 123, + 114, + 111, + 117, + 116, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 125, + ]), + ], + }, + }, }, /** ListGlobalConfigs returns all global-tier assignment configs. */ listGlobalConfigs: { @@ -2517,7 +2617,52 @@ export const CostLevelAssignmentConfigServiceDefinition = { requestStream: false, responseType: ListGlobalConfigsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 18, + 35, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 99, + 111, + 110, + 102, + 105, + 103, + 115, + 47, + 103, + 108, + 111, + 98, + 97, + 108, + ]), + ], + }, + }, }, }, } as const; @@ -2535,7 +2680,43 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: ListFillTasksResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 18, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 116, + 97, + 115, + 107, + 115, + ]), + ], + }, + }, }, /** ClaimFillTask assigns the authenticated user as the active filler. */ claimFillTask: { @@ -2544,7 +2725,62 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: ClaimFillTaskResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 47, + 58, + 1, + 42, + 34, + 42, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 116, + 97, + 115, + 107, + 115, + 47, + 123, + 116, + 97, + 115, + 107, + 95, + 105, + 100, + 125, + 47, + 99, + 108, + 97, + 105, + 109, + ]), + ], + }, + }, }, /** SubmitFillTask marks all parameters as filled and requests approver review. */ submitFillTask: { @@ -2553,7 +2789,63 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: SubmitFillTaskResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 48, + 58, + 1, + 42, + 34, + 43, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 116, + 97, + 115, + 107, + 115, + 47, + 123, + 116, + 97, + 115, + 107, + 95, + 105, + 100, + 125, + 47, + 115, + 117, + 98, + 109, + 105, + 116, + ]), + ], + }, + }, }, /** ApproveFillTask approves a submitted fill task. */ approveFillTask: { @@ -2562,7 +2854,64 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: ApproveFillTaskResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 58, + 1, + 42, + 34, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 116, + 97, + 115, + 107, + 115, + 47, + 123, + 116, + 97, + 115, + 107, + 95, + 105, + 100, + 125, + 47, + 97, + 112, + 112, + 114, + 111, + 118, + 101, + ]), + ], + }, + }, }, /** RejectFillTask rejects a submitted fill task and returns it to the filler. */ rejectFillTask: { @@ -2571,7 +2920,63 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: RejectFillTaskResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 48, + 58, + 1, + 42, + 34, + 43, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 105, + 108, + 108, + 45, + 116, + 97, + 115, + 107, + 115, + 47, + 123, + 116, + 97, + 115, + 107, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 106, + 101, + 99, + 116, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_notification.ts b/src/types/generated/finance/v1/cost_notification.ts index 7b0434d..3af7d3a 100644 --- a/src/types/generated/finance/v1/cost_notification.ts +++ b/src/types/generated/finance/v1/cost_notification.ts @@ -877,7 +877,51 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: ListMyCostNotificationsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, getMyCostNotificationUnreadCount: { name: "GetMyCostNotificationUnreadCount", @@ -885,7 +929,64 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: GetMyCostNotificationUnreadCountResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 18, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 117, + 110, + 114, + 101, + 97, + 100, + 45, + 99, + 111, + 117, + 110, + 116, + ]), + ], + }, + }, }, markCostNotificationRead: { name: "MarkCostNotificationRead", @@ -893,7 +994,77 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: MarkCostNotificationReadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 97, + 100, + ]), + ], + }, + }, }, markAllMyCostNotificationsRead: { name: "MarkAllMyCostNotificationsRead", @@ -901,7 +1072,68 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: MarkAllMyCostNotificationsReadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 53, + 58, + 1, + 42, + 34, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 109, + 97, + 114, + 107, + 45, + 97, + 108, + 108, + 45, + 114, + 101, + 97, + 100, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_paper_tube_type.ts b/src/types/generated/finance/v1/cost_paper_tube_type.ts index 60f9072..3351e46 100644 --- a/src/types/generated/finance/v1/cost_paper_tube_type.ts +++ b/src/types/generated/finance/v1/cost_paper_tube_type.ts @@ -354,7 +354,54 @@ export const CostPaperTubeTypeServiceDefinition = { requestStream: false, responseType: ListCostPaperTubeTypesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 97, + 112, + 101, + 114, + 45, + 116, + 117, + 98, + 101, + 45, + 116, + 121, + 112, + 101, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_product_request.ts b/src/types/generated/finance/v1/cost_product_request.ts index 793b7c5..2812dd6 100644 --- a/src/types/generated/finance/v1/cost_product_request.ts +++ b/src/types/generated/finance/v1/cost_product_request.ts @@ -6990,7 +6990,57 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: CreateCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 34, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + ]), + ], + }, + }, }, getCostProductRequest: { name: "GetCostProductRequest", @@ -6998,7 +7048,67 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 52, + 18, + 50, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, getCostProductRequestByNo: { name: "GetCostProductRequestByNo", @@ -7006,7 +7116,73 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetCostProductRequestByNoResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 58, + 18, + 56, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 98, + 121, + 45, + 110, + 111, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 110, + 111, + 125, + ]), + ], + }, + }, }, updateCostProductRequest: { name: "UpdateCostProductRequest", @@ -7014,7 +7190,70 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: UpdateCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 55, + 58, + 1, + 42, + 26, + 50, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listCostProductRequests: { name: "ListCostProductRequests", @@ -7022,7 +7261,54 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ListCostProductRequestsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + ]), + ], + }, + }, }, submitCostProductRequest: { name: "SubmitCostProductRequest", @@ -7030,7 +7316,77 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: SubmitCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 115, + 117, + 98, + 109, + 105, + 116, + ]), + ], + }, + }, }, startCostProductRequestReview: { name: "StartCostProductRequestReview", @@ -7038,7 +7394,83 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: StartCostProductRequestReviewResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 68, + 58, + 1, + 42, + 34, + 63, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 115, + 116, + 97, + 114, + 116, + 45, + 114, + 101, + 118, + 105, + 101, + 119, + ]), + ], + }, + }, }, verifyCostProductRequestClassification: { name: "VerifyCostProductRequestClassification", @@ -7046,7 +7478,92 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: VerifyCostProductRequestClassificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 77, + 58, + 1, + 42, + 34, + 72, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 118, + 101, + 114, + 105, + 102, + 121, + 45, + 99, + 108, + 97, + 115, + 115, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + ]), + ], + }, + }, }, decideCostProductRequestFeasibility: { name: "DecideCostProductRequestFeasibility", @@ -7054,7 +7571,89 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: DecideCostProductRequestFeasibilityResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 74, + 58, + 1, + 42, + 34, + 69, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 100, + 101, + 99, + 105, + 100, + 101, + 45, + 102, + 101, + 97, + 115, + 105, + 98, + 105, + 108, + 105, + 116, + 121, + ]), + ], + }, + }, }, useExistingCostingForCostProductRequest: { name: "UseExistingCostingForCostProductRequest", @@ -7062,7 +7661,91 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: UseExistingCostingForCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 76, + 58, + 1, + 42, + 34, + 71, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 117, + 115, + 101, + 45, + 101, + 120, + 105, + 115, + 116, + 105, + 110, + 103, + 45, + 99, + 111, + 115, + 116, + 105, + 110, + 103, + ]), + ], + }, + }, }, rejectCostProductRequest: { name: "RejectCostProductRequest", @@ -7070,7 +7753,77 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: RejectCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 106, + 101, + 99, + 116, + ]), + ], + }, + }, }, reviseCostProductRequest: { name: "ReviseCostProductRequest", @@ -7078,7 +7831,77 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ReviseCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 118, + 105, + 115, + 101, + ]), + ], + }, + }, }, /** ReopenCostProductRequest moves a CLOSED request back to DRAFT. */ reopenCostProductRequest: { @@ -7087,7 +7910,77 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ReopenCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 111, + 112, + 101, + 110, + ]), + ], + }, + }, }, /** * MarkParameterPending advances ROUTING_DEFINED → PARAMETER_PENDING and @@ -7099,7 +7992,93 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: MarkParameterPendingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 78, + 58, + 1, + 42, + 34, + 73, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 109, + 97, + 114, + 107, + 45, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 45, + 112, + 101, + 110, + 100, + 105, + 110, + 103, + ]), + ], + }, + }, }, /** * MarkParameterComplete advances PARAMETER_PENDING → PARAMETER_COMPLETE @@ -7111,7 +8090,94 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: MarkParameterCompleteResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 79, + 58, + 1, + 42, + 34, + 74, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 109, + 97, + 114, + 107, + 45, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 45, + 99, + 111, + 109, + 112, + 108, + 101, + 116, + 101, + ]), + ], + }, + }, }, cancelCostProductRequest: { name: "CancelCostProductRequest", @@ -7119,7 +8185,77 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: CancelCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 99, + 97, + 110, + 99, + 101, + 108, + ]), + ], + }, + }, }, closeCostProductRequest: { name: "CloseCostProductRequest", @@ -7127,7 +8263,76 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: CloseCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 61, + 58, + 1, + 42, + 34, + 56, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 99, + 108, + 111, + 115, + 101, + ]), + ], + }, + }, }, assignCostProductRequest: { name: "AssignCostProductRequest", @@ -7135,7 +8340,77 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: AssignCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 97, + 115, + 115, + 105, + 103, + 110, + ]), + ], + }, + }, }, /** LinkExistingRoute attaches an existing route_head to the request. */ linkExistingRoute: { @@ -7144,7 +8419,81 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: LinkExistingRouteResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 66, + 58, + 1, + 42, + 34, + 61, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 108, + 105, + 110, + 107, + 45, + 114, + 111, + 117, + 116, + 101, + ]), + ], + }, + }, }, /** UnlinkRoute clears both existing-product and linked-route fields. */ unlinkRoute: { @@ -7153,7 +8502,83 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: UnlinkRouteResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 68, + 58, + 1, + 42, + 34, + 63, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 117, + 110, + 108, + 105, + 110, + 107, + 45, + 114, + 111, + 117, + 116, + 101, + ]), + ], + }, + }, }, /** ConfirmCostProductRequest advances PARAMETER_COMPLETE → CONFIRMED. */ confirmCostProductRequest: { @@ -7162,7 +8587,78 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ConfirmCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 63, + 58, + 1, + 42, + 34, + 58, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 99, + 111, + 110, + 102, + 105, + 114, + 109, + ]), + ], + }, + }, }, /** ApproveCostProductRequest advances CONFIRMED → APPROVED. */ approveCostProductRequest: { @@ -7171,7 +8667,78 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ApproveCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 63, + 58, + 1, + 42, + 34, + 58, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 97, + 112, + 112, + 114, + 111, + 118, + 101, + ]), + ], + }, + }, }, /** * ReleaseCostProductRequest advances APPROVED → RELEASED. @@ -7183,7 +8750,78 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ReleaseCostProductRequestResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 63, + 58, + 1, + 42, + 34, + 58, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 108, + 101, + 97, + 115, + 101, + ]), + ], + }, + }, }, /** GetCostProductRequestHistory returns the full status-transition timeline for a request. */ getCostProductRequestHistory: { @@ -7192,7 +8830,75 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetCostProductRequestHistoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 60, + 18, + 58, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 104, + 105, + 115, + 116, + 111, + 114, + 121, + ]), + ], + }, + }, }, /** * GetParamSummary returns all param values for the request grouped by product @@ -7204,7 +8910,81 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetParamSummaryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 66, + 18, + 64, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 112, + 97, + 114, + 97, + 109, + 45, + 115, + 117, + 109, + 109, + 97, + 114, + 121, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_product_type.ts b/src/types/generated/finance/v1/cost_product_type.ts index ccae884..d5c8ed4 100644 --- a/src/types/generated/finance/v1/cost_product_type.ts +++ b/src/types/generated/finance/v1/cost_product_type.ts @@ -1555,7 +1555,54 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: CreateCostProductTypeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 34, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 116, + 121, + 112, + 101, + 115, + ]), + ], + }, + }, }, getCostProductType: { name: "GetCostProductType", @@ -1563,7 +1610,61 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: GetCostProductTypeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 18, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 116, + 121, + 112, + 101, + 115, + 47, + 123, + 116, + 121, + 112, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateCostProductType: { name: "UpdateCostProductType", @@ -1571,7 +1672,64 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: UpdateCostProductTypeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 58, + 1, + 42, + 26, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 116, + 121, + 112, + 101, + 115, + 47, + 123, + 116, + 121, + 112, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listCostProductTypes: { name: "ListCostProductTypes", @@ -1579,7 +1737,51 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: ListCostProductTypesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 116, + 121, + 112, + 101, + 115, + ]), + ], + }, + }, }, exportCostProductTypes: { name: "ExportCostProductTypes", @@ -1587,7 +1789,58 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: ExportCostProductTypesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 18, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 116, + 121, + 112, + 101, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importCostProductTypes: { name: "ImportCostProductTypes", @@ -1595,7 +1848,61 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: ImportCostProductTypesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 58, + 1, + 42, + 34, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 116, + 121, + 112, + 101, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadCostProductTypeTemplate: { name: "DownloadCostProductTypeTemplate", @@ -1603,7 +1910,60 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: DownloadCostProductTypeTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 18, + 43, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 116, + 121, + 112, + 101, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_request_comment.ts b/src/types/generated/finance/v1/cost_request_comment.ts index 0a3667f..a103ef6 100644 --- a/src/types/generated/finance/v1/cost_request_comment.ts +++ b/src/types/generated/finance/v1/cost_request_comment.ts @@ -1747,7 +1747,57 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: CreateCostRequestCommentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 34, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + ]), + ], + }, + }, }, updateCostRequestComment: { name: "UpdateCostRequestComment", @@ -1755,7 +1805,70 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: UpdateCostRequestCommentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 55, + 58, + 1, + 42, + 26, + 50, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, hideCostRequestComment: { name: "HideCostRequestComment", @@ -1763,7 +1876,75 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: HideCostRequestCommentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 60, + 58, + 1, + 42, + 34, + 55, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + 47, + 104, + 105, + 100, + 101, + ]), + ], + }, + }, }, unhideCostRequestComment: { name: "UnhideCostRequestComment", @@ -1771,7 +1952,77 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: UnhideCostRequestCommentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 62, + 58, + 1, + 42, + 34, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + 47, + 117, + 110, + 104, + 105, + 100, + 101, + ]), + ], + }, + }, }, deleteCostRequestComment: { name: "DeleteCostRequestComment", @@ -1779,7 +2030,67 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: DeleteCostRequestCommentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 52, + 42, + 50, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listCostRequestComments: { name: "ListCostRequestComments", @@ -1787,7 +2098,76 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: ListCostRequestCommentsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 61, + 18, + 59, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 115, + 47, + 123, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + ]), + ], + }, + }, }, listCostCommentEditHistory: { name: "ListCostCommentEditHistory", @@ -1795,7 +2175,80 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: ListCostCommentEditHistoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 65, + 18, + 63, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 99, + 111, + 109, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + 47, + 101, + 100, + 105, + 116, + 45, + 104, + 105, + 115, + 116, + 111, + 114, + 121, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_rm_type.ts b/src/types/generated/finance/v1/cost_rm_type.ts index f3c8d7c..221f5ad 100644 --- a/src/types/generated/finance/v1/cost_rm_type.ts +++ b/src/types/generated/finance/v1/cost_rm_type.ts @@ -1017,7 +1017,49 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: CreateCostRmTypeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 58, + 1, + 42, + 34, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 109, + 45, + 116, + 121, + 112, + 101, + 115, + ]), + ], + }, + }, }, getCostRmType: { name: "GetCostRmType", @@ -1025,7 +1067,56 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: GetCostRmTypeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 109, + 45, + 116, + 121, + 112, + 101, + 115, + 47, + 123, + 116, + 121, + 112, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateCostRmType: { name: "UpdateCostRmType", @@ -1033,7 +1124,59 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: UpdateCostRmTypeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 26, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 109, + 45, + 116, + 121, + 112, + 101, + 115, + 47, + 123, + 116, + 121, + 112, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listCostRmTypes: { name: "ListCostRmTypes", @@ -1041,7 +1184,46 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: ListCostRmTypesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 109, + 45, + 116, + 121, + 112, + 101, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_routing_rule.ts b/src/types/generated/finance/v1/cost_routing_rule.ts index 70c6ed2..2fe7803 100644 --- a/src/types/generated/finance/v1/cost_routing_rule.ts +++ b/src/types/generated/finance/v1/cost_routing_rule.ts @@ -1172,7 +1172,54 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: CreateCostRoutingRuleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 34, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 111, + 117, + 116, + 105, + 110, + 103, + 45, + 114, + 117, + 108, + 101, + 115, + ]), + ], + }, + }, }, getCostRoutingRule: { name: "GetCostRoutingRule", @@ -1180,7 +1227,61 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: GetCostRoutingRuleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 18, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 111, + 117, + 116, + 105, + 110, + 103, + 45, + 114, + 117, + 108, + 101, + 115, + 47, + 123, + 114, + 117, + 108, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateCostRoutingRule: { name: "UpdateCostRoutingRule", @@ -1188,7 +1289,64 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: UpdateCostRoutingRuleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 58, + 1, + 42, + 26, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 111, + 117, + 116, + 105, + 110, + 103, + 45, + 114, + 117, + 108, + 101, + 115, + 47, + 123, + 114, + 117, + 108, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deleteCostRoutingRule: { name: "DeleteCostRoutingRule", @@ -1196,7 +1354,61 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: DeleteCostRoutingRuleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 42, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 111, + 117, + 116, + 105, + 110, + 103, + 45, + 114, + 117, + 108, + 101, + 115, + 47, + 123, + 114, + 117, + 108, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listCostRoutingRules: { name: "ListCostRoutingRules", @@ -1204,7 +1416,51 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: ListCostRoutingRulesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 99, + 111, + 115, + 116, + 45, + 114, + 111, + 117, + 116, + 105, + 110, + 103, + 45, + 114, + 117, + 108, + 101, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/formula.ts b/src/types/generated/finance/v1/formula.ts index f4736fb..132c6e9 100644 --- a/src/types/generated/finance/v1/formula.ts +++ b/src/types/generated/finance/v1/formula.ts @@ -2498,7 +2498,44 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: CreateFormulaResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + ]), + ], + }, + }, }, /** GetFormula retrieves a formula by ID. */ getFormula: { @@ -2507,7 +2544,54 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: GetFormulaResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + 47, + 123, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateFormula updates an existing formula. @@ -2519,7 +2603,57 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: UpdateFormulaResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 26, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + 47, + 123, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteFormula soft deletes a formula. */ deleteFormula: { @@ -2528,7 +2662,54 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: DeleteFormulaResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 42, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + 47, + 123, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListFormulas lists formulas with search, filter, and pagination. */ listFormulas: { @@ -2537,7 +2718,41 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: ListFormulasResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + ]), + ], + }, + }, }, /** ExportFormulas exports formulas to Excel file. */ exportFormulas: { @@ -2546,7 +2761,48 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: ExportFormulasResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportFormulas imports formulas from Excel file. */ importFormulas: { @@ -2555,7 +2811,51 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: ImportFormulasResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 58, + 1, + 42, + 34, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadFormulaTemplate downloads the Excel import template. */ downloadFormulaTemplate: { @@ -2564,7 +2864,50 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: DownloadFormulaTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 102, + 111, + 114, + 109, + 117, + 108, + 97, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/parameter.ts b/src/types/generated/finance/v1/parameter.ts index 7b448f2..0cdf7eb 100644 --- a/src/types/generated/finance/v1/parameter.ts +++ b/src/types/generated/finance/v1/parameter.ts @@ -3203,7 +3203,46 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: CreateParameterResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 58, + 1, + 42, + 34, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + ]), + ], + }, + }, }, /** GetParameter retrieves a parameter by ID. */ getParameter: { @@ -3212,7 +3251,54 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: GetParameterResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + 47, + 123, + 112, + 97, + 114, + 97, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateParameter updates an existing parameter. @@ -3224,7 +3310,57 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: UpdateParameterResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 26, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + 47, + 123, + 112, + 97, + 114, + 97, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteParameter soft deletes a parameter. */ deleteParameter: { @@ -3233,7 +3369,54 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: DeleteParameterResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 42, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + 47, + 123, + 112, + 97, + 114, + 97, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListParameters lists parameters with search, filter, and pagination. */ listParameters: { @@ -3242,7 +3425,43 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: ListParametersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 18, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + ]), + ], + }, + }, }, /** ExportParameters exports parameters to Excel file. */ exportParameters: { @@ -3251,7 +3470,50 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: ExportParametersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportParameters imports parameters from Excel file. */ importParameters: { @@ -3260,7 +3522,53 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: ImportParametersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 58, + 1, + 42, + 34, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadParameterTemplate downloads the Excel import template. */ downloadParameterTemplate: { @@ -3269,7 +3577,52 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: DownloadParameterTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 18, + 35, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 97, + 114, + 97, + 109, + 101, + 116, + 101, + 114, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/rm_category.ts b/src/types/generated/finance/v1/rm_category.ts index c9066ac..ce04004 100644 --- a/src/types/generated/finance/v1/rm_category.ts +++ b/src/types/generated/finance/v1/rm_category.ts @@ -1860,7 +1860,49 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: CreateRMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 58, + 1, + 42, + 34, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + ]), + ], + }, + }, }, /** GetRMCategory retrieves a raw material category by ID. */ getRMCategory: { @@ -1869,7 +1911,63 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: GetRMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 48, + 18, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 123, + 114, + 109, + 95, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateRMCategory updates an existing raw material category. @@ -1881,7 +1979,66 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: UpdateRMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 58, + 1, + 42, + 26, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 123, + 114, + 109, + 95, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteRMCategory soft deletes a raw material category. */ deleteRMCategory: { @@ -1890,7 +2047,63 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: DeleteRMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 48, + 42, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 123, + 114, + 109, + 95, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListRMCategories lists raw material categories with search, filter, and pagination. */ listRMCategories: { @@ -1899,7 +2112,46 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: ListRMCategoriesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + ]), + ], + }, + }, }, /** ExportRMCategories exports raw material categories to Excel file. */ exportRMCategories: { @@ -1908,7 +2160,53 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: ExportRMCategoriesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 18, + 36, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportRMCategories imports raw material categories from Excel file. */ importRMCategories: { @@ -1917,7 +2215,56 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: ImportRMCategoriesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 58, + 1, + 42, + 34, + 36, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadRMCategoryTemplate downloads the Excel import template. */ downloadRMCategoryTemplate: { @@ -1926,7 +2273,55 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: DownloadRMCategoryTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 40, + 18, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/rm_cost.ts b/src/types/generated/finance/v1/rm_cost.ts index bf25eb1..731cb6b 100644 --- a/src/types/generated/finance/v1/rm_cost.ts +++ b/src/types/generated/finance/v1/rm_cost.ts @@ -6123,7 +6123,52 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: TriggerRMCostCalculationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 34, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 116, + 114, + 105, + 103, + 103, + 101, + 114, + ]), + ], + }, + }, }, /** CalculateRMCost runs a recalculation synchronously (admin-only). */ calculateRMCost: { @@ -6132,7 +6177,54 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: CalculateRMCostResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 34, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 99, + 97, + 108, + 99, + 117, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** GetRMCost fetches a single cost row by (period, rm_code). */ getRMCost: { @@ -6141,7 +6233,60 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: GetRMCostResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 18, + 43, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 112, + 101, + 114, + 105, + 111, + 100, + 125, + 47, + 123, + 114, + 109, + 95, + 99, + 111, + 100, + 101, + 125, + ]), + ], + }, + }, }, /** ListRMCosts lists cost rows with filter + pagination. */ listRMCosts: { @@ -6150,7 +6295,41 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListRMCostsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + ]), + ], + }, + }, }, /** ListRMCostHistory lists audit-history rows with filter + pagination. */ listRMCostHistory: { @@ -6159,7 +6338,49 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListRMCostHistoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 18, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 104, + 105, + 115, + 116, + 111, + 114, + 121, + ]), + ], + }, + }, }, /** ListRMCostPeriods returns distinct periods from cost rows (newest first). */ listRMCostPeriods: { @@ -6168,7 +6389,49 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListRMCostPeriodsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 18, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 112, + 101, + 114, + 105, + 111, + 100, + 115, + ]), + ], + }, + }, }, /** * ExportRMCosts exports cost rows matching the filter to a single-sheet Excel. @@ -6181,7 +6444,48 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ExportRMCostsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** * GetExportDownloadURL returns a short-lived presigned URL for downloading the @@ -6194,7 +6498,67 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: GetExportDownloadURLResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 52, + 18, + 50, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + 115, + 47, + 123, + 106, + 111, + 98, + 95, + 105, + 100, + 125, + 47, + 100, + 111, + 119, + 110, + 108, + 111, + 97, + 100, + ]), + ], + }, + }, }, /** * RequestRMCostExport queues an asynchronous export job. The worker renders a @@ -6209,7 +6573,59 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: RequestRMCostExportResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 34, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + 45, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** V2: ListCostDetails returns per-item snapshot rows for a cost row. */ listCostDetails: { @@ -6218,7 +6634,62 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListCostDetailsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 47, + 18, + 45, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 114, + 109, + 95, + 99, + 111, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 100, + 101, + 116, + 97, + 105, + 108, + 115, + ]), + ], + }, + }, }, /** * V2: UpdateRMCostInputs edits any of the per-row marketing snapshot inputs @@ -6232,7 +6703,64 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: UpdateRMCostInputsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 58, + 1, + 42, + 26, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 114, + 109, + 95, + 99, + 111, + 115, + 116, + 95, + 105, + 100, + 125, + 47, + 105, + 110, + 112, + 117, + 116, + 115, + ]), + ], + }, + }, }, /** * V2: UpdateCostDetailFixRate sets fix_rate on one detail row, recomputes @@ -6245,7 +6773,78 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: UpdateCostDetailFixRateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 63, + 58, + 1, + 42, + 26, + 58, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 100, + 101, + 116, + 97, + 105, + 108, + 115, + 47, + 123, + 99, + 111, + 115, + 116, + 95, + 100, + 101, + 116, + 97, + 105, + 108, + 95, + 105, + 100, + 125, + 47, + 102, + 105, + 120, + 45, + 114, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/rm_group.ts b/src/types/generated/finance/v1/rm_group.ts index a3e054a..62cff0f 100644 --- a/src/types/generated/finance/v1/rm_group.ts +++ b/src/types/generated/finance/v1/rm_group.ts @@ -7277,7 +7277,45 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: CreateRMGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 58, + 1, + 42, + 34, + 25, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + ]), + ], + }, + }, }, /** GetRMGroup retrieves a group head + its details. */ getRMGroup: { @@ -7286,7 +7324,58 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: GetRMGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 18, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** UpdateRMGroup applies a partial update to a group head. */ updateRMGroup: { @@ -7295,7 +7384,61 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: UpdateRMGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 58, + 1, + 42, + 26, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteRMGroup soft-deletes a group head (cascade to its details). */ deleteRMGroup: { @@ -7304,7 +7447,58 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: DeleteRMGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 42, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListRMGroups lists group heads with search + filter + pagination. */ listRMGroups: { @@ -7313,7 +7507,42 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ListRMGroupsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 27, + 18, + 25, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + ]), + ], + }, + }, }, /** * AddItems assigns items to a group. Items already in another active group @@ -7325,7 +7554,67 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: AddItemsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 52, + 58, + 1, + 42, + 34, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + 47, + 105, + 116, + 101, + 109, + 115, + ]), + ], + }, + }, }, /** RemoveItems removes details from a group (deactivate or soft-delete). */ removeItems: { @@ -7334,7 +7623,74 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: RemoveItemsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 59, + 58, + 1, + 42, + 34, + 54, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + 47, + 105, + 116, + 101, + 109, + 115, + 47, + 114, + 101, + 109, + 111, + 118, + 101, + ]), + ], + }, + }, }, /** V2: UpdateGroupItem updates one detail row's valuation fields + sort/active. */ updateGroupItem: { @@ -7343,7 +7699,85 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: UpdateGroupItemResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 70, + 58, + 1, + 42, + 26, + 65, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + 47, + 105, + 116, + 101, + 109, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 100, + 101, + 116, + 97, + 105, + 108, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * ListUngroupedItems reports items from the sync feed that have no active @@ -7355,7 +7789,52 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ListUngroupedItemsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 18, + 35, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 117, + 110, + 103, + 114, + 111, + 117, + 112, + 101, + 100, + ]), + ], + }, + }, }, /** * GetRMGroupItemRates returns per-item per-stage rates for every active @@ -7367,7 +7846,69 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: GetRMGroupItemRatesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 54, + 18, + 52, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + 47, + 105, + 116, + 101, + 109, + 45, + 114, + 97, + 116, + 101, + 115, + ]), + ], + }, + }, }, /** ExportRMGroups exports all groups + their items to a 2-sheet Excel. */ exportRMGroups: { @@ -7376,7 +7917,49 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ExportRMGroupsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 18, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** * ImportRMGroups imports groups and/or items from a 2-sheet Excel. Users can @@ -7388,7 +7971,52 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ImportRMGroupsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 34, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadRMGroupTemplate returns a blank 2-sheet Excel with header rows. */ downloadRMGroupTemplate: { @@ -7397,7 +8025,51 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: DownloadRMGroupTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** ExportUngroupedItems exports ungrouped items matching the filter to Excel. */ exportUngroupedItems: { @@ -7406,7 +8078,59 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ExportUngroupedItemsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 18, + 42, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 117, + 110, + 103, + 114, + 111, + 117, + 112, + 101, + 100, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** * ImportGroupItems bulk-assigns items to ONE existing group from a @@ -7419,7 +8143,74 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ImportGroupItemsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 59, + 58, + 1, + 42, + 34, + 54, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 103, + 114, + 111, + 117, + 112, + 95, + 104, + 101, + 97, + 100, + 95, + 105, + 100, + 125, + 47, + 105, + 116, + 101, + 109, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** * DownloadGroupItemsTemplate returns a blank one-sheet Excel with just @@ -7431,7 +8222,57 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: DownloadGroupItemsTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 18, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 114, + 109, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 105, + 116, + 101, + 109, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/uom.ts b/src/types/generated/finance/v1/uom.ts index 0a46727..556dd90 100644 --- a/src/types/generated/finance/v1/uom.ts +++ b/src/types/generated/finance/v1/uom.ts @@ -2167,7 +2167,40 @@ export const UOMServiceDefinition = { requestStream: false, responseType: CreateUOMResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 25, + 58, + 1, + 42, + 34, + 20, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + ]), + ], + }, + }, }, /** GetUOM retrieves a UOM by ID. */ getUOM: { @@ -2176,7 +2209,46 @@ export const UOMServiceDefinition = { requestStream: false, responseType: GetUOMResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + 47, + 123, + 117, + 111, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateUOM updates an existing UOM. @@ -2188,7 +2260,49 @@ export const UOMServiceDefinition = { requestStream: false, responseType: UpdateUOMResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 58, + 1, + 42, + 26, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + 47, + 123, + 117, + 111, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteUOM soft deletes a UOM. */ deleteUOM: { @@ -2197,7 +2311,46 @@ export const UOMServiceDefinition = { requestStream: false, responseType: DeleteUOMResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 42, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + 47, + 123, + 117, + 111, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListUOMs lists UOMs with search, filter, and pagination. */ listUOMs: { @@ -2206,7 +2359,37 @@ export const UOMServiceDefinition = { requestStream: false, responseType: ListUOMsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 22, + 18, + 20, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + ]), + ], + }, + }, }, /** ExportUOMs exports UOMs to Excel file. */ exportUOMs: { @@ -2215,7 +2398,44 @@ export const UOMServiceDefinition = { requestStream: false, responseType: ExportUOMsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportUOMs imports UOMs from Excel file. */ importUOMs: { @@ -2224,7 +2444,47 @@ export const UOMServiceDefinition = { requestStream: false, responseType: ImportUOMsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 34, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadTemplate downloads the Excel import template. */ downloadTemplate: { @@ -2233,7 +2493,46 @@ export const UOMServiceDefinition = { requestStream: false, responseType: DownloadTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/uom_category.ts b/src/types/generated/finance/v1/uom_category.ts index 23cb2f1..8033b81 100644 --- a/src/types/generated/finance/v1/uom_category.ts +++ b/src/types/generated/finance/v1/uom_category.ts @@ -1860,7 +1860,50 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: CreateUOMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + ]), + ], + }, + }, }, /** GetUOMCategory retrieves a UOM category by ID. */ getUOMCategory: { @@ -1869,7 +1912,65 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: GetUOMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 18, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 123, + 117, + 111, + 109, + 95, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateUOMCategory updates an existing UOM category. @@ -1881,7 +1982,68 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: UpdateUOMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 53, + 58, + 1, + 42, + 26, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 123, + 117, + 111, + 109, + 95, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteUOMCategory soft deletes a UOM category. */ deleteUOMCategory: { @@ -1890,7 +2052,65 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: DeleteUOMCategoryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 42, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 123, + 117, + 111, + 109, + 95, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListUOMCategories lists UOM categories with search, filter, and pagination. */ listUOMCategories: { @@ -1899,7 +2119,47 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: ListUOMCategoriesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + ]), + ], + }, + }, }, /** ExportUOMCategories exports UOM categories to Excel file. */ exportUOMCategories: { @@ -1908,7 +2168,54 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: ExportUOMCategoriesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportUOMCategories imports UOM categories from Excel file. */ importUOMCategories: { @@ -1917,7 +2224,57 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: ImportUOMCategoriesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 34, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadUOMCategoryTemplate downloads the Excel import template. */ downloadUOMCategoryTemplate: { @@ -1926,7 +2283,56 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: DownloadUOMCategoryTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 117, + 111, + 109, + 45, + 99, + 97, + 116, + 101, + 103, + 111, + 114, + 105, + 101, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/finance/v1/yarn_master.ts b/src/types/generated/finance/v1/yarn_master.ts index 1f69b2f..8020a02 100644 --- a/src/types/generated/finance/v1/yarn_master.ts +++ b/src/types/generated/finance/v1/yarn_master.ts @@ -19339,7 +19339,44 @@ export const MachineServiceDefinition = { requestStream: false, responseType: CreateMachineResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + ]), + ], + }, + }, }, /** GetMachine retrieves a machine by ID. */ getMachine: { @@ -19348,7 +19385,54 @@ export const MachineServiceDefinition = { requestStream: false, responseType: GetMachineResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + 47, + 123, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListMachines lists machine records with search, filter, and pagination. */ listMachines: { @@ -19357,7 +19441,41 @@ export const MachineServiceDefinition = { requestStream: false, responseType: ListMachinesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + ]), + ], + }, + }, }, /** UpdateMachine updates an existing machine record. */ updateMachine: { @@ -19366,7 +19484,57 @@ export const MachineServiceDefinition = { requestStream: false, responseType: UpdateMachineResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 26, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + 47, + 123, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteMachine soft-deletes a machine record. */ deleteMachine: { @@ -19375,7 +19543,54 @@ export const MachineServiceDefinition = { requestStream: false, responseType: DeleteMachineResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 42, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + 47, + 123, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ExportMachines exports machine records to Excel. */ exportMachines: { @@ -19384,7 +19599,48 @@ export const MachineServiceDefinition = { requestStream: false, responseType: ExportMachinesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportMachines imports machine records from Excel. */ importMachines: { @@ -19393,7 +19649,51 @@ export const MachineServiceDefinition = { requestStream: false, responseType: ImportMachinesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 58, + 1, + 42, + 34, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadMachineTemplate downloads the Excel import template. */ downloadMachineTemplate: { @@ -19402,7 +19702,50 @@ export const MachineServiceDefinition = { requestStream: false, responseType: DownloadMachineTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 97, + 99, + 104, + 105, + 110, + 101, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -19420,7 +19763,52 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: CreateBoxBobbinCostResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 34, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + ]), + ], + }, + }, }, /** GetBoxBobbinCost retrieves a config by ID (includes rates). */ getBoxBobbinCost: { @@ -19429,7 +19817,58 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: GetBoxBobbinCostResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 18, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 98, + 98, + 99, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListBoxBobbinCosts lists configs with search, filter, and pagination. */ listBoxBobbinCosts: { @@ -19438,7 +19877,49 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: ListBoxBobbinCostsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 18, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + ]), + ], + }, + }, }, /** UpdateBoxBobbinCost updates an existing config. */ updateBoxBobbinCost: { @@ -19447,7 +19928,61 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: UpdateBoxBobbinCostResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 58, + 1, + 42, + 26, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 98, + 98, + 99, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteBoxBobbinCost soft-deletes a config. */ deleteBoxBobbinCost: { @@ -19456,7 +19991,58 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: DeleteBoxBobbinCostResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 42, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 98, + 98, + 99, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** CreateBoxBobbinCostRate adds a period rate entry to a config. */ createBoxBobbinCostRate: { @@ -19465,7 +20051,67 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: CreateBoxBobbinCostRateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 52, + 58, + 1, + 42, + 34, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 98, + 98, + 99, + 95, + 105, + 100, + 125, + 47, + 114, + 97, + 116, + 101, + 115, + ]), + ], + }, + }, }, /** DeleteBoxBobbinCostRate removes a period rate entry. */ deleteBoxBobbinCostRate: { @@ -19474,7 +20120,74 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: DeleteBoxBobbinCostRateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 59, + 42, + 57, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 123, + 98, + 98, + 99, + 95, + 105, + 100, + 125, + 47, + 114, + 97, + 116, + 101, + 115, + 47, + 123, + 98, + 98, + 99, + 114, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ExportBoxBobbinCosts exports configs to Excel. */ exportBoxBobbinCosts: { @@ -19483,7 +20196,56 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: ExportBoxBobbinCostsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportBoxBobbinCosts imports configs from Excel. */ importBoxBobbinCosts: { @@ -19492,7 +20254,59 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: ImportBoxBobbinCostsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 34, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadBoxBobbinCostTemplate downloads the Excel import template. */ downloadBoxBobbinCostTemplate: { @@ -19501,7 +20315,58 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: DownloadBoxBobbinCostTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 18, + 41, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 98, + 111, + 120, + 45, + 98, + 111, + 98, + 98, + 105, + 110, + 45, + 99, + 111, + 115, + 116, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -19519,7 +20384,50 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: CreateInterminglingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, /** GetIntermingling retrieves an intermingling record by ID. */ getIntermingling: { @@ -19528,7 +20436,57 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: GetInterminglingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 18, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + 47, + 123, + 105, + 110, + 116, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListInterminglings lists intermingling records with search, filter, and pagination. */ listInterminglings: { @@ -19537,7 +20495,47 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: ListInterminglingsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, /** UpdateIntermingling updates an existing intermingling record. */ updateIntermingling: { @@ -19546,7 +20544,60 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: UpdateInterminglingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 58, + 1, + 42, + 26, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + 47, + 123, + 105, + 110, + 116, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteIntermingling soft-deletes an intermingling record. */ deleteIntermingling: { @@ -19555,7 +20606,57 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: DeleteInterminglingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 42, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + 47, + 123, + 105, + 110, + 116, + 109, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ExportInterminglings exports records to Excel. */ exportInterminglings: { @@ -19564,7 +20665,54 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: ExportInterminglingsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportInterminglings imports records from Excel. */ importInterminglings: { @@ -19573,7 +20721,57 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: ImportInterminglingsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 34, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadInterminglingTemplate downloads the Excel import template. */ downloadInterminglingTemplate: { @@ -19582,7 +20780,56 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: DownloadInterminglingTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 105, + 110, + 116, + 101, + 114, + 109, + 105, + 110, + 103, + 108, + 105, + 110, + 103, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -19600,7 +20847,50 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: CreateProductGradeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + ]), + ], + }, + }, }, /** GetProductGrade retrieves a Product Grade by ID. */ getProductGrade: { @@ -19609,7 +20899,55 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: GetProductGradeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 40, + 18, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + 47, + 123, + 112, + 103, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListProductGrades lists Product Grades with search, filter, and pagination. */ listProductGrades: { @@ -19618,7 +20956,47 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: ListProductGradesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + ]), + ], + }, + }, }, /** UpdateProductGrade updates an existing Product Grade. */ updateProductGrade: { @@ -19627,7 +21005,58 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: UpdateProductGradeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 58, + 1, + 42, + 26, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + 47, + 123, + 112, + 103, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteProductGrade soft-deletes a Product Grade. */ deleteProductGrade: { @@ -19636,7 +21065,55 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: DeleteProductGradeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 40, + 42, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + 47, + 123, + 112, + 103, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ExportProductGrades exports Product Grades to Excel. */ exportProductGrades: { @@ -19645,7 +21122,54 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: ExportProductGradesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportProductGrades imports Product Grades from Excel. */ importProductGrades: { @@ -19654,7 +21178,57 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: ImportProductGradesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 34, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadProductGradeTemplate downloads the Excel import template. */ downloadProductGradeTemplate: { @@ -19663,7 +21237,56 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: DownloadProductGradeTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 112, + 114, + 111, + 100, + 117, + 99, + 116, + 45, + 103, + 114, + 97, + 100, + 101, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -19681,7 +21304,44 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: CreateMBHeadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + ]), + ], + }, + }, }, /** GetMBHead retrieves an MB Head record by ID. */ getMBHead: { @@ -19690,7 +21350,50 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: GetMBHeadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListMBHeads lists MB Head records with search, filter, and pagination. */ listMBHeads: { @@ -19699,7 +21402,41 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: ListMBHeadsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + ]), + ], + }, + }, }, /** UpdateMBHead updates an existing MB Head record. */ updateMBHead: { @@ -19708,7 +21445,53 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: UpdateMBHeadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 58, + 1, + 42, + 26, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteMBHead soft-deletes an MB Head record. */ deleteMBHead: { @@ -19717,7 +21500,50 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: DeleteMBHeadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 42, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ExportMBHeads exports MB Head records to Excel. */ exportMBHeads: { @@ -19726,7 +21552,48 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: ExportMBHeadsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportMBHeads imports MB Head records from Excel. */ importMBHeads: { @@ -19735,7 +21602,51 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: ImportMBHeadsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 58, + 1, + 42, + 34, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadMBHeadTemplate downloads the Excel import template. */ downloadMBHeadTemplate: { @@ -19744,7 +21655,50 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: DownloadMBHeadTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -19762,7 +21716,59 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: CreateMBSpinResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 34, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + ]), + ], + }, + }, }, /** GetMBSpin retrieves an MB Spin record by ID. */ getMBSpin: { @@ -19771,7 +21777,65 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: GetMBSpinResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 18, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + 47, + 123, + 109, + 98, + 115, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListMBSpins lists MB Spin records under a head. */ listMBSpins: { @@ -19780,7 +21844,56 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: ListMBSpinsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + ]), + ], + }, + }, }, /** UpdateMBSpin updates an existing MB Spin record. */ updateMBSpin: { @@ -19789,7 +21902,68 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: UpdateMBSpinResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 53, + 58, + 1, + 42, + 26, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + 47, + 123, + 109, + 98, + 115, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteMBSpin soft-deletes an MB Spin record. */ deleteMBSpin: { @@ -19798,7 +21972,65 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: DeleteMBSpinResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 42, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + 47, + 123, + 109, + 98, + 115, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ExportMBSpins exports MB Spin records to Excel. */ exportMBSpins: { @@ -19807,7 +22039,63 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: ExportMBSpinsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 48, + 18, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportMBSpins imports MB Spin records from Excel. */ importMBSpins: { @@ -19816,7 +22104,66 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: ImportMBSpinsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 58, + 1, + 42, + 34, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadMBSpinTemplate downloads the Excel import template. */ downloadMBSpinTemplate: { @@ -19825,7 +22172,65 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: DownloadMBSpinTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 50, + 18, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 109, + 98, + 45, + 104, + 101, + 97, + 100, + 115, + 47, + 123, + 109, + 98, + 104, + 95, + 105, + 100, + 125, + 47, + 115, + 112, + 105, + 110, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -19843,7 +22248,47 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListLookupMastersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 115, + ]), + ], + }, + }, }, /** ListLookupMasterColumns returns the selectable columns for one lookup master. */ listLookupMasterColumns: { @@ -19852,7 +22297,54 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListLookupMasterColumnsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 45, + 99, + 111, + 108, + 117, + 109, + 110, + 115, + ]), + ], + }, + }, }, /** CreateLookupMaster adds a new master to the registry. */ createLookupMaster: { @@ -19861,7 +22353,50 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: CreateLookupMasterResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 115, + ]), + ], + }, + }, }, /** DeleteLookupMaster removes a master from the registry. */ deleteLookupMaster: { @@ -19870,7 +22405,57 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: DeleteLookupMasterResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 42, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 115, + 47, + 123, + 108, + 109, + 95, + 99, + 111, + 100, + 101, + 125, + ]), + ], + }, + }, }, /** CreateLookupMasterColumn adds a fillable column to a master. */ createLookupMasterColumn: { @@ -19879,7 +22464,57 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: CreateLookupMasterColumnResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 34, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 45, + 99, + 111, + 108, + 117, + 109, + 110, + 115, + ]), + ], + }, + }, }, /** DeleteLookupMasterColumn removes a column from a master. */ deleteLookupMasterColumn: { @@ -19888,7 +22523,63 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: DeleteLookupMasterColumnResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 48, + 42, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 45, + 99, + 111, + 108, + 117, + 109, + 110, + 115, + 47, + 123, + 108, + 109, + 99, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** UpdateLookupMaster updates display_name, table_name, and/or is_active of an existing master. */ updateLookupMaster: { @@ -19897,7 +22588,60 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: UpdateLookupMasterResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 58, + 1, + 42, + 26, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 115, + 47, + 123, + 108, + 109, + 95, + 99, + 111, + 100, + 101, + 125, + ]), + ], + }, + }, }, /** ListTableColumns introspects a registered PostgreSQL table's columns via information_schema. */ listTableColumns: { @@ -19906,7 +22650,60 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListTableColumnsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 18, + 43, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 45, + 116, + 97, + 98, + 108, + 101, + 45, + 99, + 111, + 108, + 117, + 109, + 110, + 115, + ]), + ], + }, + }, }, /** ListMasterOptions returns combobox options (value+label) by querying the registered table. */ listMasterOptions: { @@ -19915,7 +22712,54 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListMasterOptionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 45, + 111, + 112, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, /** ExportLookupMasters exports all masters and columns to an Excel workbook. */ exportLookupMasters: { @@ -19924,7 +22768,54 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ExportLookupMastersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportLookupMasters imports masters and columns from an Excel workbook. */ importLookupMasters: { @@ -19933,7 +22824,57 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ImportLookupMastersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 34, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 109, + 97, + 115, + 116, + 101, + 114, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, }, } as const; @@ -19955,7 +22896,51 @@ export const YarnLookupFillServiceDefinition = { requestStream: false, responseType: GetLookupFillValuesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 102, + 105, + 110, + 97, + 110, + 99, + 101, + 47, + 108, + 111, + 111, + 107, + 117, + 112, + 45, + 102, + 105, + 108, + 108, + 45, + 118, + 97, + 108, + 117, + 101, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/audit.ts b/src/types/generated/iam/v1/audit.ts index 2cc091a..3ac30cb 100644 --- a/src/types/generated/iam/v1/audit.ts +++ b/src/types/generated/iam/v1/audit.ts @@ -2009,7 +2009,48 @@ export const AuditServiceDefinition = { requestStream: false, responseType: GetAuditLogResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 100, + 105, + 116, + 45, + 108, + 111, + 103, + 115, + 47, + 123, + 108, + 111, + 103, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListAuditLogs lists audit logs with search, filter, and pagination. */ listAuditLogs: { @@ -2018,7 +2059,39 @@ export const AuditServiceDefinition = { requestStream: false, responseType: ListAuditLogsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 24, + 18, + 22, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 100, + 105, + 116, + 45, + 108, + 111, + 103, + 115, + ]), + ], + }, + }, }, /** ExportAuditLogs exports audit logs to Excel for compliance. */ exportAuditLogs: { @@ -2027,7 +2100,46 @@ export const AuditServiceDefinition = { requestStream: false, responseType: ExportAuditLogsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 100, + 105, + 116, + 45, + 108, + 111, + 103, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** GetAuditSummary gets audit statistics for dashboard. */ getAuditSummary: { @@ -2036,7 +2148,47 @@ export const AuditServiceDefinition = { requestStream: false, responseType: GetAuditSummaryResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 100, + 105, + 116, + 45, + 108, + 111, + 103, + 115, + 47, + 115, + 117, + 109, + 109, + 97, + 114, + 121, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/auth.ts b/src/types/generated/iam/v1/auth.ts index 0231552..60236af 100644 --- a/src/types/generated/iam/v1/auth.ts +++ b/src/types/generated/iam/v1/auth.ts @@ -3357,7 +3357,42 @@ export const AuthServiceDefinition = { requestStream: false, responseType: LoginResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 27, + 58, + 1, + 42, + 34, + 22, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 108, + 111, + 103, + 105, + 110, + ]), + ], + }, + }, }, /** Logout invalidates the current session. */ logout: { @@ -3366,7 +3401,43 @@ export const AuthServiceDefinition = { requestStream: false, responseType: LogoutResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 58, + 1, + 42, + 34, + 23, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 108, + 111, + 103, + 111, + 117, + 116, + ]), + ], + }, + }, }, /** RefreshToken exchanges a refresh token for new access/refresh tokens. */ refreshToken: { @@ -3375,7 +3446,44 @@ export const AuthServiceDefinition = { requestStream: false, responseType: RefreshTokenResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 114, + 101, + 102, + 114, + 101, + 115, + 104, + ]), + ], + }, + }, }, /** ForgotPassword initiates password reset by sending OTP to email. */ forgotPassword: { @@ -3384,7 +3492,52 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ForgotPasswordResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 34, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 102, + 111, + 114, + 103, + 111, + 116, + 45, + 112, + 97, + 115, + 115, + 119, + 111, + 114, + 100, + ]), + ], + }, + }, }, /** VerifyResetOTP validates the OTP code and returns a reset token. */ verifyResetOTP: { @@ -3393,7 +3546,47 @@ export const AuthServiceDefinition = { requestStream: false, responseType: VerifyResetOTPResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 34, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 118, + 101, + 114, + 105, + 102, + 121, + 45, + 111, + 116, + 112, + ]), + ], + }, + }, }, /** ResetPassword sets a new password using a valid reset token. */ resetPassword: { @@ -3402,7 +3595,51 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ResetPasswordResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 58, + 1, + 42, + 34, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 114, + 101, + 115, + 101, + 116, + 45, + 112, + 97, + 115, + 115, + 119, + 111, + 114, + 100, + ]), + ], + }, + }, }, /** UpdatePassword changes password for authenticated user. */ updatePassword: { @@ -3411,7 +3648,52 @@ export const AuthServiceDefinition = { requestStream: false, responseType: UpdatePasswordResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 34, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 117, + 112, + 100, + 97, + 116, + 101, + 45, + 112, + 97, + 115, + 115, + 119, + 111, + 114, + 100, + ]), + ], + }, + }, }, /** * Enable2FA initiates two-factor authentication setup. @@ -3423,7 +3705,47 @@ export const AuthServiceDefinition = { requestStream: false, responseType: Enable2FAResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 34, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 50, + 102, + 97, + 47, + 101, + 110, + 97, + 98, + 108, + 101, + ]), + ], + }, + }, }, /** Verify2FA confirms 2FA setup with a TOTP code. */ verify2FA: { @@ -3432,7 +3754,47 @@ export const AuthServiceDefinition = { requestStream: false, responseType: Verify2FAResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 34, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 50, + 102, + 97, + 47, + 118, + 101, + 114, + 105, + 102, + 121, + ]), + ], + }, + }, }, /** Disable2FA removes two-factor authentication. */ disable2FA: { @@ -3441,7 +3803,48 @@ export const AuthServiceDefinition = { requestStream: false, responseType: Disable2FAResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 58, + 1, + 42, + 34, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 50, + 102, + 97, + 47, + 100, + 105, + 115, + 97, + 98, + 108, + 101, + ]), + ], + }, + }, }, /** GetCurrentUser returns the authenticated user's info. */ getCurrentUser: { @@ -3450,7 +3853,36 @@ export const AuthServiceDefinition = { requestStream: false, responseType: GetCurrentUserResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 21, + 18, + 19, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 109, + 101, + ]), + ], + }, + }, }, /** * SendEmailVerification sends a 6-digit verification code to the authenticated user's email. @@ -3462,7 +3894,60 @@ export const AuthServiceDefinition = { requestStream: false, responseType: SendEmailVerificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 58, + 1, + 42, + 34, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 115, + 101, + 110, + 100, + 45, + 101, + 109, + 97, + 105, + 108, + 45, + 118, + 101, + 114, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + ]), + ], + }, + }, }, /** VerifyEmail consumes a verification code and marks the authenticated user's email as verified. */ verifyEmail: { @@ -3471,7 +3956,49 @@ export const AuthServiceDefinition = { requestStream: false, responseType: VerifyEmailResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 58, + 1, + 42, + 34, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 118, + 101, + 114, + 105, + 102, + 121, + 45, + 101, + 109, + 97, + 105, + 108, + ]), + ], + }, + }, }, /** ResendEmailVerification re-sends the verification code. Rate-limited to 1 per minute per user. */ resendEmailVerification: { @@ -3480,7 +4007,62 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ResendEmailVerificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 47, + 58, + 1, + 42, + 34, + 42, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 114, + 101, + 115, + 101, + 110, + 100, + 45, + 101, + 109, + 97, + 105, + 108, + 45, + 118, + 101, + 114, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + ]), + ], + }, + }, }, /** * ValidateUnlockPassword verifies the authenticated user's password without changing it. @@ -3493,7 +4075,52 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ValidateUnlockPasswordResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 58, + 1, + 42, + 34, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 97, + 117, + 116, + 104, + 47, + 118, + 97, + 108, + 105, + 100, + 97, + 116, + 101, + 45, + 117, + 110, + 108, + 111, + 99, + 107, + ]), + ], + }, + }, }, /** * VerifyPassword checks the user's password without changing any state. diff --git a/src/types/generated/iam/v1/cms.ts b/src/types/generated/iam/v1/cms.ts index bc111c0..0ed2bf6 100644 --- a/src/types/generated/iam/v1/cms.ts +++ b/src/types/generated/iam/v1/cms.ts @@ -4861,7 +4861,41 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: CreateCMSPageResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 58, + 1, + 42, + 34, + 21, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 112, + 97, + 103, + 101, + 115, + ]), + ], + }, + }, }, /** GetCMSPage retrieves a CMS page by ID. */ getCMSPage: { @@ -4870,7 +4904,48 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: GetCMSPageResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 18, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 112, + 97, + 103, + 101, + 115, + 47, + 123, + 112, + 97, + 103, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * GetCMSPageBySlug retrieves a CMS page by its URL slug. @@ -4882,7 +4957,50 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: GetCMSPageBySlugResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 112, + 97, + 103, + 101, + 115, + 47, + 115, + 108, + 117, + 103, + 47, + 123, + 115, + 108, + 117, + 103, + 125, + ]), + ], + }, + }, }, /** * UpdateCMSPage updates an existing CMS page. @@ -4894,7 +5012,51 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: UpdateCMSPageResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 58, + 1, + 42, + 26, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 112, + 97, + 103, + 101, + 115, + 47, + 123, + 112, + 97, + 103, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteCMSPage soft deletes a CMS page. */ deleteCMSPage: { @@ -4903,7 +5065,48 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: DeleteCMSPageResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 42, + 31, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 112, + 97, + 103, + 101, + 115, + 47, + 123, + 112, + 97, + 103, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListCMSPages lists CMS pages with search, filter, and pagination. */ listCMSPages: { @@ -4912,7 +5115,38 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: ListCMSPagesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 23, + 18, + 21, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 112, + 97, + 103, + 101, + 115, + ]), + ], + }, + }, }, }, } as const; @@ -4930,7 +5164,44 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: CreateCMSSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, /** GetCMSSection retrieves a CMS section by ID. */ getCMSSection: { @@ -4939,7 +5210,54 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: GetCMSSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 18, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateCMSSection updates an existing CMS section. @@ -4951,7 +5269,57 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: UpdateCMSSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 42, + 58, + 1, + 42, + 26, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteCMSSection soft deletes a CMS section. */ deleteCMSSection: { @@ -4960,7 +5328,54 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: DeleteCMSSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 42, + 37, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListCMSSections lists CMS sections with search, filter, and pagination. */ listCMSSections: { @@ -4969,7 +5384,41 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: ListCMSSectionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, /** * GetPublicLandingContent fetches all published landing page content in one call. @@ -4982,7 +5431,39 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: GetPublicLandingContentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 24, + 18, + 22, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 112, + 117, + 98, + 108, + 105, + 99, + 47, + 108, + 97, + 110, + 100, + 105, + 110, + 103, + ]), + ], + }, + }, }, /** * UploadCMSImage uploads an image to MinIO storage for use in CMS sections. @@ -4994,7 +5475,42 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: UploadCMSImageResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 27, + 58, + 1, + 42, + 34, + 22, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 117, + 112, + 108, + 111, + 97, + 100, + ]), + ], + }, + }, }, }, } as const; @@ -5015,7 +5531,55 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: GetCMSSettingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 40, + 18, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 116, + 116, + 105, + 110, + 103, + 115, + 47, + 123, + 115, + 101, + 116, + 116, + 105, + 110, + 103, + 95, + 107, + 101, + 121, + 125, + ]), + ], + }, + }, }, /** UpdateCMSSetting updates a CMS setting value. */ updateCMSSetting: { @@ -5024,7 +5588,58 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: UpdateCMSSettingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 43, + 58, + 1, + 42, + 26, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 116, + 116, + 105, + 110, + 103, + 115, + 47, + 123, + 115, + 101, + 116, + 116, + 105, + 110, + 103, + 95, + 107, + 101, + 121, + 125, + ]), + ], + }, + }, }, /** ListCMSSettings lists CMS settings, optionally filtered by group. */ listCMSSettings: { @@ -5033,7 +5648,41 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: ListCMSSettingsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 116, + 116, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, /** BulkUpdateCMSSettings updates multiple settings at once. */ bulkUpdateCMSSettings: { @@ -5042,7 +5691,44 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: BulkUpdateCMSSettingsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 26, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 109, + 115, + 47, + 115, + 101, + 116, + 116, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/company_mapping.ts b/src/types/generated/iam/v1/company_mapping.ts index 105a1c1..95f2d2d 100644 --- a/src/types/generated/iam/v1/company_mapping.ts +++ b/src/types/generated/iam/v1/company_mapping.ts @@ -1651,7 +1651,48 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: CreateCompanyMappingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 58, + 1, + 42, + 34, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, /** GetCompanyMapping fetches a mapping by ID. */ getCompanyMapping: { @@ -1660,7 +1701,66 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: GetCompanyMappingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 18, + 49, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + 47, + 123, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 95, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** UpdateCompanyMapping updates an existing mapping. Code is immutable. */ updateCompanyMapping: { @@ -1669,7 +1769,69 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: UpdateCompanyMappingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 54, + 58, + 1, + 42, + 26, + 49, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + 47, + 123, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 95, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteCompanyMapping soft-deletes a mapping. */ deleteCompanyMapping: { @@ -1678,7 +1840,66 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: DeleteCompanyMappingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 42, + 49, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + 47, + 123, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 95, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListCompanyMappings lists mappings with search, filter, and pagination. */ listCompanyMappings: { @@ -1687,7 +1908,45 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: ListCompanyMappingsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 18, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/employee_group.ts b/src/types/generated/iam/v1/employee_group.ts index 6b11ca1..c265de8 100644 --- a/src/types/generated/iam/v1/employee_group.ts +++ b/src/types/generated/iam/v1/employee_group.ts @@ -1773,7 +1773,47 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: CreateEmployeeGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 34, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + ]), + ], + }, + }, }, /** GetEmployeeGroup retrieves an employee group by ID. */ getEmployeeGroup: { @@ -1782,7 +1822,64 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: GetEmployeeGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 18, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 103, + 114, + 111, + 117, + 112, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateEmployeeGroup updates an existing employee group. @@ -1794,7 +1891,67 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: UpdateEmployeeGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 52, + 58, + 1, + 42, + 26, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 103, + 114, + 111, + 117, + 112, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteEmployeeGroup soft deletes an employee group. */ deleteEmployeeGroup: { @@ -1803,7 +1960,64 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: DeleteEmployeeGroupResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 42, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 103, + 114, + 111, + 117, + 112, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListEmployeeGroups lists employee groups with search, filter, and pagination. */ listEmployeeGroups: { @@ -1812,7 +2026,44 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: ListEmployeeGroupsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + ]), + ], + }, + }, }, /** ExportEmployeeGroups exports employee groups to Excel file. */ exportEmployeeGroups: { @@ -1821,7 +2072,51 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: ExportEmployeeGroupsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportEmployeeGroups imports employee groups from Excel file. */ importEmployeeGroups: { @@ -1830,7 +2125,54 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: ImportEmployeeGroupsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 34, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadEmployeeGroupTemplate downloads the Excel import template. */ downloadEmployeeGroupTemplate: { @@ -1839,7 +2181,53 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: DownloadEmployeeGroupTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 18, + 36, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 103, + 114, + 111, + 117, + 112, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/employee_level.ts b/src/types/generated/iam/v1/employee_level.ts index 7d52f17..d8d73f5 100644 --- a/src/types/generated/iam/v1/employee_level.ts +++ b/src/types/generated/iam/v1/employee_level.ts @@ -2930,7 +2930,47 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: CreateEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 34, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + ]), + ], + }, + }, }, /** GetEmployeeLevel retrieves an employee level by ID. */ getEmployeeLevel: { @@ -2939,7 +2979,64 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: GetEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 18, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * UpdateEmployeeLevel updates an existing employee level. @@ -2951,7 +3048,67 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: UpdateEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 52, + 58, + 1, + 42, + 26, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** DeleteEmployeeLevel soft deletes an employee level. */ deleteEmployeeLevel: { @@ -2960,7 +3117,64 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: DeleteEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 42, + 47, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListEmployeeLevels lists employee levels with search, filter, and pagination. */ listEmployeeLevels: { @@ -2969,7 +3183,44 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ListEmployeeLevelsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + ]), + ], + }, + }, }, /** ExportEmployeeLevels exports employee levels to Excel file. */ exportEmployeeLevels: { @@ -2978,7 +3229,51 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ExportEmployeeLevelsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportEmployeeLevels imports employee levels from Excel file. */ importEmployeeLevels: { @@ -2987,7 +3282,54 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ImportEmployeeLevelsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 34, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadEmployeeLevelTemplate downloads the Excel import template. */ downloadEmployeeLevelTemplate: { @@ -2996,7 +3338,53 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: DownloadEmployeeLevelTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 18, + 36, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** SubmitEmployeeLevel transitions workflow from DRAFT → SUBMITTED. */ submitEmployeeLevel: { @@ -3005,7 +3393,74 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: SubmitEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 59, + 58, + 1, + 42, + 34, + 54, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 95, + 105, + 100, + 125, + 47, + 115, + 117, + 98, + 109, + 105, + 116, + ]), + ], + }, + }, }, /** ApproveEmployeeLevel transitions workflow from SUBMITTED → APPROVED. */ approveEmployeeLevel: { @@ -3014,7 +3469,75 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ApproveEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 60, + 58, + 1, + 42, + 34, + 55, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 95, + 105, + 100, + 125, + 47, + 97, + 112, + 112, + 114, + 111, + 118, + 101, + ]), + ], + }, + }, }, /** ReleaseEmployeeLevel transitions workflow from APPROVED → RELEASED. */ releaseEmployeeLevel: { @@ -3023,7 +3546,75 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ReleaseEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 60, + 58, + 1, + 42, + 34, + 55, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 108, + 101, + 97, + 115, + 101, + ]), + ], + }, + }, }, /** BypassReleaseEmployeeLevel transitions workflow directly to RELEASED from any state. */ bypassReleaseEmployeeLevel: { @@ -3032,7 +3623,82 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: BypassReleaseEmployeeLevelResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 67, + 58, + 1, + 42, + 34, + 62, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 45, + 108, + 101, + 118, + 101, + 108, + 115, + 47, + 123, + 101, + 109, + 112, + 108, + 111, + 121, + 101, + 101, + 95, + 108, + 101, + 118, + 101, + 108, + 95, + 105, + 100, + 125, + 47, + 98, + 121, + 112, + 97, + 115, + 115, + 45, + 114, + 101, + 108, + 101, + 97, + 115, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/menu.ts b/src/types/generated/iam/v1/menu.ts index bee8acf..56a0d1b 100644 --- a/src/types/generated/iam/v1/menu.ts +++ b/src/types/generated/iam/v1/menu.ts @@ -3490,7 +3490,37 @@ export const MenuServiceDefinition = { requestStream: false, responseType: CreateMenuResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 22, + 58, + 1, + 42, + 34, + 17, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + ]), + ], + }, + }, }, getMenu: { name: "GetMenu", @@ -3498,7 +3528,44 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetMenuResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 123, + 109, + 101, + 110, + 117, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateMenu: { name: "UpdateMenu", @@ -3506,7 +3573,47 @@ export const MenuServiceDefinition = { requestStream: false, responseType: UpdateMenuResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 26, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 123, + 109, + 101, + 110, + 117, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deleteMenu: { name: "DeleteMenu", @@ -3514,7 +3621,44 @@ export const MenuServiceDefinition = { requestStream: false, responseType: DeleteMenuResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 42, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 123, + 109, + 101, + 110, + 117, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listMenus: { name: "ListMenus", @@ -3522,7 +3666,13 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ListMenusResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([19, 18, 17, 47, 97, 112, 105, 47, 118, 49, 47, 105, 97, 109, 47, 109, 101, 110, 117, 115]), + ], + }, + }, }, exportMenus: { name: "ExportMenus", @@ -3530,7 +3680,41 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ExportMenusResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importMenus: { name: "ImportMenus", @@ -3538,7 +3722,44 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ImportMenusResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadMenuTemplate: { name: "DownloadMenuTemplate", @@ -3546,7 +3767,43 @@ export const MenuServiceDefinition = { requestStream: false, responseType: DownloadMenuTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 18, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** Get menu tree for current authenticated user (filtered by permissions) */ getMenuTree: { @@ -3555,7 +3812,39 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetMenuTreeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 24, + 18, + 22, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 116, + 114, + 101, + 101, + ]), + ], + }, + }, }, /** Get full menu tree for admin management (not filtered by permissions) */ getFullMenuTree: { @@ -3564,7 +3853,44 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetFullMenuTreeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 116, + 114, + 101, + 101, + 47, + 102, + 117, + 108, + 108, + ]), + ], + }, + }, }, /** Menu-Permission assignment */ assignMenuPermissions: { @@ -3573,7 +3899,59 @@ export const MenuServiceDefinition = { requestStream: false, responseType: AssignMenuPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 34, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 123, + 109, + 101, + 110, + 117, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, removeMenuPermissions: { name: "RemoveMenuPermissions", @@ -3581,7 +3959,66 @@ export const MenuServiceDefinition = { requestStream: false, responseType: RemoveMenuPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 58, + 1, + 42, + 34, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 123, + 109, + 101, + 110, + 117, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 114, + 101, + 109, + 111, + 118, + 101, + ]), + ], + }, + }, }, getMenuPermissions: { name: "GetMenuPermissions", @@ -3589,7 +4026,56 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetMenuPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 123, + 109, + 101, + 110, + 117, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, /** Reorder menus within same parent */ reorderMenus: { @@ -3598,7 +4084,45 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ReorderMenusResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 58, + 1, + 42, + 34, + 25, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 109, + 101, + 110, + 117, + 115, + 47, + 114, + 101, + 111, + 114, + 100, + 101, + 114, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/notification.ts b/src/types/generated/iam/v1/notification.ts index 4c3e6d8..2df4593 100644 --- a/src/types/generated/iam/v1/notification.ts +++ b/src/types/generated/iam/v1/notification.ts @@ -2880,7 +2880,53 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: RequestNotificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 58, + 1, + 42, + 34, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 114, + 101, + 113, + 117, + 101, + 115, + 116, + ]), + ], + }, + }, }, /** * CreateNotification creates a new notification for a user. Used by other @@ -2892,7 +2938,45 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: CreateNotificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 58, + 1, + 42, + 34, + 25, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, /** GetNotification returns a single notification owned by the caller. */ getNotification: { @@ -2901,7 +2985,60 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: GetNotificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 18, + 43, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListNotifications lists notifications for the authenticated user. */ listNotifications: { @@ -2910,7 +3047,42 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: ListNotificationsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 27, + 18, + 25, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, /** GetUnreadCount returns the count of unread notifications for the caller. */ getUnreadCount: { @@ -2919,7 +3091,55 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: GetUnreadCountResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 40, + 18, + 38, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 117, + 110, + 114, + 101, + 97, + 100, + 45, + 99, + 111, + 117, + 110, + 116, + ]), + ], + }, + }, }, /** MarkAsRead marks a single notification as read. */ markAsRead: { @@ -2928,7 +3148,68 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: MarkAsReadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 53, + 58, + 1, + 42, + 34, + 48, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 97, + 100, + ]), + ], + }, + }, }, /** MarkAllAsRead marks all unread notifications as read. */ markAllAsRead: { @@ -2937,7 +3218,54 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: MarkAllAsReadResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 34, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 114, + 101, + 97, + 100, + 45, + 97, + 108, + 108, + ]), + ], + }, + }, }, /** ArchiveNotification archives a notification (kept until expires_at). */ archiveNotification: { @@ -2946,7 +3274,71 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: ArchiveNotificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 56, + 58, + 1, + 42, + 34, + 51, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + 47, + 97, + 114, + 99, + 104, + 105, + 118, + 101, + ]), + ], + }, + }, }, /** DeleteNotification hard-deletes a notification owned by the caller. */ deleteNotification: { @@ -2955,7 +3347,60 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: DeleteNotificationResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 42, + 43, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 110, + 111, + 116, + 105, + 102, + 105, + 99, + 97, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** * StreamNotifications opens a server-streaming subscription for new diff --git a/src/types/generated/iam/v1/organization.ts b/src/types/generated/iam/v1/organization.ts index 13f9ebf..29c8726 100644 --- a/src/types/generated/iam/v1/organization.ts +++ b/src/types/generated/iam/v1/organization.ts @@ -7818,7 +7818,41 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: CreateCompanyResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 58, + 1, + 42, + 34, + 21, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + ]), + ], + }, + }, }, getCompany: { name: "GetCompany", @@ -7826,7 +7860,51 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: GetCompanyResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + 47, + 123, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateCompany: { name: "UpdateCompany", @@ -7834,7 +7912,54 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: UpdateCompanyResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 26, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + 47, + 123, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deleteCompany: { name: "DeleteCompany", @@ -7842,7 +7967,51 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: DeleteCompanyResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 42, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + 47, + 123, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listCompanies: { name: "ListCompanies", @@ -7850,7 +8019,38 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: ListCompaniesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 23, + 18, + 21, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + ]), + ], + }, + }, }, exportCompanies: { name: "ExportCompanies", @@ -7858,7 +8058,45 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: ExportCompaniesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 18, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importCompanies: { name: "ImportCompanies", @@ -7866,7 +8104,48 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: ImportCompaniesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 58, + 1, + 42, + 34, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadCompanyTemplate: { name: "DownloadCompanyTemplate", @@ -7874,7 +8153,47 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: DownloadCompanyTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 105, + 101, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -7891,7 +8210,41 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: CreateDivisionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 58, + 1, + 42, + 34, + 21, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, getDivision: { name: "GetDivision", @@ -7899,7 +8252,52 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: GetDivisionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 18, + 35, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + 47, + 123, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateDivision: { name: "UpdateDivision", @@ -7907,7 +8305,55 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: UpdateDivisionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 40, + 58, + 1, + 42, + 26, + 35, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + 47, + 123, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deleteDivision: { name: "DeleteDivision", @@ -7915,7 +8361,52 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: DeleteDivisionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 37, + 42, + 35, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + 47, + 123, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listDivisions: { name: "ListDivisions", @@ -7923,7 +8414,38 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: ListDivisionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 23, + 18, + 21, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, exportDivisions: { name: "ExportDivisions", @@ -7931,7 +8453,45 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: ExportDivisionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 18, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importDivisions: { name: "ImportDivisions", @@ -7939,7 +8499,48 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: ImportDivisionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 33, + 58, + 1, + 42, + 34, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadDivisionTemplate: { name: "DownloadDivisionTemplate", @@ -7947,7 +8548,47 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: DownloadDivisionTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 105, + 118, + 105, + 115, + 105, + 111, + 110, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -7964,7 +8605,43 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: CreateDepartmentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 58, + 1, + 42, + 34, + 23, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + ]), + ], + }, + }, }, getDepartment: { name: "GetDepartment", @@ -7972,7 +8649,56 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: GetDepartmentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateDepartment: { name: "UpdateDepartment", @@ -7980,7 +8706,59 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: UpdateDepartmentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 26, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deleteDepartment: { name: "DeleteDepartment", @@ -7988,7 +8766,56 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: DeleteDepartmentResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 42, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + 47, + 123, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listDepartments: { name: "ListDepartments", @@ -7996,7 +8823,40 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: ListDepartmentsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 25, + 18, + 23, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + ]), + ], + }, + }, }, exportDepartments: { name: "ExportDepartments", @@ -8004,7 +8864,47 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: ExportDepartmentsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importDepartments: { name: "ImportDepartments", @@ -8012,7 +8912,50 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: ImportDepartmentsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadDepartmentTemplate: { name: "DownloadDepartmentTemplate", @@ -8020,7 +8963,49 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: DownloadDepartmentTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 18, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 100, + 101, + 112, + 97, + 114, + 116, + 109, + 101, + 110, + 116, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -8037,7 +9022,40 @@ export const SectionServiceDefinition = { requestStream: false, responseType: CreateSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 25, + 58, + 1, + 42, + 34, + 20, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, getSection: { name: "GetSection", @@ -8045,7 +9063,50 @@ export const SectionServiceDefinition = { requestStream: false, responseType: GetSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 18, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateSection: { name: "UpdateSection", @@ -8053,7 +9114,53 @@ export const SectionServiceDefinition = { requestStream: false, responseType: UpdateSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 58, + 1, + 42, + 26, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deleteSection: { name: "DeleteSection", @@ -8061,7 +9168,50 @@ export const SectionServiceDefinition = { requestStream: false, responseType: DeleteSectionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 42, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 123, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listSections: { name: "ListSections", @@ -8069,7 +9219,37 @@ export const SectionServiceDefinition = { requestStream: false, responseType: ListSectionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 22, + 18, + 20, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, exportSections: { name: "ExportSections", @@ -8077,7 +9257,44 @@ export const SectionServiceDefinition = { requestStream: false, responseType: ExportSectionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importSections: { name: "ImportSections", @@ -8085,7 +9302,47 @@ export const SectionServiceDefinition = { requestStream: false, responseType: ImportSectionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 34, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadSectionTemplate: { name: "DownloadSectionTemplate", @@ -8093,7 +9350,46 @@ export const SectionServiceDefinition = { requestStream: false, responseType: DownloadSectionTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 99, + 116, + 105, + 111, + 110, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, }, } as const; @@ -8111,7 +9407,46 @@ export const OrganizationServiceDefinition = { requestStream: false, responseType: GetOrganizationTreeResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 31, + 18, + 29, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 111, + 114, + 103, + 97, + 110, + 105, + 122, + 97, + 116, + 105, + 111, + 110, + 47, + 116, + 114, + 101, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/role.ts b/src/types/generated/iam/v1/role.ts index 8187df8..4297643 100644 --- a/src/types/generated/iam/v1/role.ts +++ b/src/types/generated/iam/v1/role.ts @@ -4815,7 +4815,37 @@ export const RoleServiceDefinition = { requestStream: false, responseType: CreateRoleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 22, + 58, + 1, + 42, + 34, + 17, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + ]), + ], + }, + }, }, getRole: { name: "GetRole", @@ -4823,7 +4853,44 @@ export const RoleServiceDefinition = { requestStream: false, responseType: GetRoleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 123, + 114, + 111, + 108, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updateRole: { name: "UpdateRole", @@ -4831,7 +4898,47 @@ export const RoleServiceDefinition = { requestStream: false, responseType: UpdateRoleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 26, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 123, + 114, + 111, + 108, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deleteRole: { name: "DeleteRole", @@ -4839,7 +4946,44 @@ export const RoleServiceDefinition = { requestStream: false, responseType: DeleteRoleResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 42, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 123, + 114, + 111, + 108, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listRoles: { name: "ListRoles", @@ -4847,7 +4991,13 @@ export const RoleServiceDefinition = { requestStream: false, responseType: ListRolesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([19, 18, 17, 47, 97, 112, 105, 47, 118, 49, 47, 105, 97, 109, 47, 114, 111, 108, 101, 115]), + ], + }, + }, }, exportRoles: { name: "ExportRoles", @@ -4855,7 +5005,41 @@ export const RoleServiceDefinition = { requestStream: false, responseType: ExportRolesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importRoles: { name: "ImportRoles", @@ -4863,7 +5047,44 @@ export const RoleServiceDefinition = { requestStream: false, responseType: ImportRolesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadRoleTemplate: { name: "DownloadRoleTemplate", @@ -4871,7 +5092,43 @@ export const RoleServiceDefinition = { requestStream: false, responseType: DownloadRoleTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 18, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** Role-Permission assignment */ assignRolePermissions: { @@ -4880,7 +5137,59 @@ export const RoleServiceDefinition = { requestStream: false, responseType: AssignRolePermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 34, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 123, + 114, + 111, + 108, + 101, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, removeRolePermissions: { name: "RemoveRolePermissions", @@ -4888,7 +5197,66 @@ export const RoleServiceDefinition = { requestStream: false, responseType: RemoveRolePermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 58, + 1, + 42, + 34, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 123, + 114, + 111, + 108, + 101, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 114, + 101, + 109, + 111, + 118, + 101, + ]), + ], + }, + }, }, getRolePermissions: { name: "GetRolePermissions", @@ -4896,7 +5264,56 @@ export const RoleServiceDefinition = { requestStream: false, responseType: GetRolePermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 123, + 114, + 111, + 108, + 101, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, }, } as const; @@ -4913,7 +5330,43 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: CreatePermissionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 58, + 1, + 42, + 34, + 23, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, getPermission: { name: "GetPermission", @@ -4921,7 +5374,56 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: GetPermissionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 18, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 123, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, updatePermission: { name: "UpdatePermission", @@ -4929,7 +5431,59 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: UpdatePermissionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 26, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 123, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, deletePermission: { name: "DeletePermission", @@ -4937,7 +5491,56 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: DeletePermissionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 41, + 42, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 123, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listPermissions: { name: "ListPermissions", @@ -4945,7 +5548,40 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: ListPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 25, + 18, + 23, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, exportPermissions: { name: "ExportPermissions", @@ -4953,7 +5589,47 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: ExportPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, importPermissions: { name: "ImportPermissions", @@ -4961,7 +5637,50 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: ImportPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, downloadPermissionTemplate: { name: "DownloadPermissionTemplate", @@ -4969,7 +5688,49 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: DownloadPermissionTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 34, + 18, + 32, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** Get permissions grouped by service/module */ getPermissionsByService: { @@ -4978,7 +5739,51 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: GetPermissionsByServiceResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 98, + 121, + 45, + 115, + 101, + 114, + 118, + 105, + 99, + 101, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/session.ts b/src/types/generated/iam/v1/session.ts index de016c9..70b22c6 100644 --- a/src/types/generated/iam/v1/session.ts +++ b/src/types/generated/iam/v1/session.ts @@ -839,7 +839,45 @@ export const SessionServiceDefinition = { requestStream: false, responseType: GetCurrentSessionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 30, + 18, + 28, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 99, + 117, + 114, + 114, + 101, + 110, + 116, + ]), + ], + }, + }, }, /** RevokeSession force logs out the user (admin can revoke others). */ revokeSession: { @@ -848,7 +886,60 @@ export const SessionServiceDefinition = { requestStream: false, responseType: RevokeSessionResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 58, + 1, + 42, + 34, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 123, + 115, + 101, + 115, + 115, + 105, + 111, + 110, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 118, + 111, + 107, + 101, + ]), + ], + }, + }, }, /** ListActiveSessions lists all currently active sessions (admin only). */ listActiveSessions: { @@ -857,7 +948,37 @@ export const SessionServiceDefinition = { requestStream: false, responseType: ListActiveSessionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 22, + 18, + 20, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 115, + 101, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/user.ts b/src/types/generated/iam/v1/user.ts index 54aca5c..131ffb8 100644 --- a/src/types/generated/iam/v1/user.ts +++ b/src/types/generated/iam/v1/user.ts @@ -6404,7 +6404,37 @@ export const UserServiceDefinition = { requestStream: false, responseType: CreateUserResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 22, + 58, + 1, + 42, + 34, + 17, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + ]), + ], + }, + }, }, /** GetUser retrieves a user by ID. */ getUser: { @@ -6413,7 +6443,44 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 18, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** GetUserDetail retrieves user with full employee details. */ getUserDetail: { @@ -6422,7 +6489,51 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserDetailResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 100, + 101, + 116, + 97, + 105, + 108, + ]), + ], + }, + }, }, /** UpdateUser updates user credentials. */ updateUser: { @@ -6431,7 +6542,47 @@ export const UserServiceDefinition = { requestStream: false, responseType: UpdateUserResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 58, + 1, + 42, + 26, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** UpdateUserDetail updates employee details. */ updateUserDetail: { @@ -6440,7 +6591,54 @@ export const UserServiceDefinition = { requestStream: false, responseType: UpdateUserDetailResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 26, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 100, + 101, + 116, + 97, + 105, + 108, + ]), + ], + }, + }, }, /** DeleteUser soft deletes a user. */ deleteUser: { @@ -6449,7 +6647,44 @@ export const UserServiceDefinition = { requestStream: false, responseType: DeleteUserResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 42, + 27, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** ListUsers lists users with search, filter, sort, and pagination. */ listUsers: { @@ -6458,7 +6693,13 @@ export const UserServiceDefinition = { requestStream: false, responseType: ListUsersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([19, 18, 17, 47, 97, 112, 105, 47, 118, 49, 47, 105, 97, 109, 47, 117, 115, 101, 114, 115]), + ], + }, + }, }, /** ExportUsers exports users to Excel file. */ exportUsers: { @@ -6467,7 +6708,41 @@ export const UserServiceDefinition = { requestStream: false, responseType: ExportUsersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 26, + 18, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 101, + 120, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** ImportUsers imports users from Excel file. */ importUsers: { @@ -6476,7 +6751,44 @@ export const UserServiceDefinition = { requestStream: false, responseType: ImportUsersResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 29, + 58, + 1, + 42, + 34, + 24, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 105, + 109, + 112, + 111, + 114, + 116, + ]), + ], + }, + }, }, /** DownloadTemplate downloads the Excel import template. */ downloadTemplate: { @@ -6485,7 +6797,43 @@ export const UserServiceDefinition = { requestStream: false, responseType: DownloadTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 28, + 18, + 26, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + ]), + ], + }, + }, }, /** AssignUserRoles assigns roles to a user. */ assignUserRoles: { @@ -6494,7 +6842,53 @@ export const UserServiceDefinition = { requestStream: false, responseType: AssignUserRolesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 38, + 58, + 1, + 42, + 34, + 33, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 114, + 111, + 108, + 101, + 115, + ]), + ], + }, + }, }, /** RemoveUserRoles removes roles from a user. */ removeUserRoles: { @@ -6503,7 +6897,60 @@ export const UserServiceDefinition = { requestStream: false, responseType: RemoveUserRolesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 45, + 58, + 1, + 42, + 34, + 40, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 114, + 111, + 108, + 101, + 115, + 47, + 114, + 101, + 109, + 111, + 118, + 101, + ]), + ], + }, + }, }, /** AssignUserPermissions assigns direct permissions to a user. */ assignUserPermissions: { @@ -6512,7 +6959,59 @@ export const UserServiceDefinition = { requestStream: false, responseType: AssignUserPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 44, + 58, + 1, + 42, + 34, + 39, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + ]), + ], + }, + }, }, /** RemoveUserPermissions removes direct permissions from a user. */ removeUserPermissions: { @@ -6521,7 +7020,66 @@ export const UserServiceDefinition = { requestStream: false, responseType: RemoveUserPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 51, + 58, + 1, + 42, + 34, + 46, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 112, + 101, + 114, + 109, + 105, + 115, + 115, + 105, + 111, + 110, + 115, + 47, + 114, + 101, + 109, + 111, + 118, + 101, + ]), + ], + }, + }, }, /** GetUserRolesAndPermissions gets all roles and permissions for a user. */ getUserRolesAndPermissions: { @@ -6530,7 +7088,51 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserRolesAndPermissionsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 36, + 18, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 97, + 99, + 99, + 101, + 115, + 115, + ]), + ], + }, + }, }, /** * UploadProfilePicture uploads or replaces a user's profile picture. @@ -6542,7 +7144,54 @@ export const UserServiceDefinition = { requestStream: false, responseType: UploadProfilePictureResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 39, + 58, + 1, + 42, + 34, + 34, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 97, + 118, + 97, + 116, + 97, + 114, + ]), + ], + }, + }, }, /** AssignUserCompanyMapping assigns a company mapping to a user. */ assignUserCompanyMapping: { @@ -6551,7 +7200,64 @@ export const UserServiceDefinition = { requestStream: false, responseType: AssignUserCompanyMappingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 58, + 1, + 42, + 34, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, /** RemoveUserCompanyMapping removes a company mapping from a user. */ removeUserCompanyMapping: { @@ -6560,7 +7266,71 @@ export const UserServiceDefinition = { requestStream: false, responseType: RemoveUserCompanyMappingResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 56, + 58, + 1, + 42, + 34, + 51, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + 47, + 114, + 101, + 109, + 111, + 118, + 101, + ]), + ], + }, + }, }, /** GetUserCompanyMappings lists all company mappings assigned to a user. */ getUserCompanyMappings: { @@ -6569,7 +7339,61 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserCompanyMappingsResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 18, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 117, + 115, + 101, + 114, + 115, + 47, + 123, + 117, + 115, + 101, + 114, + 95, + 105, + 100, + 125, + 47, + 99, + 111, + 109, + 112, + 97, + 110, + 121, + 45, + 109, + 97, + 112, + 112, + 105, + 110, + 103, + 115, + ]), + ], + }, + }, }, }, } as const; diff --git a/src/types/generated/iam/v1/workflow.ts b/src/types/generated/iam/v1/workflow.ts index c3b5a61..0c36a1f 100644 --- a/src/types/generated/iam/v1/workflow.ts +++ b/src/types/generated/iam/v1/workflow.ts @@ -3440,7 +3440,50 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: CreateWorkflowTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 115, + ]), + ], + }, + }, }, getWorkflowTemplate: { name: "GetWorkflowTemplate", @@ -3448,7 +3491,61 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: GetWorkflowTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 18, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 115, + 47, + 123, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** Update creates a new version row; the prior version remains in history. */ updateWorkflowTemplate: { @@ -3457,7 +3554,64 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: UpdateWorkflowTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 49, + 58, + 1, + 42, + 26, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 115, + 47, + 123, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, /** Activate marks this version active and deactivates all other versions of the same kind. */ activateWorkflowTemplate: { @@ -3466,7 +3620,73 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: ActivateWorkflowTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 58, + 58, + 1, + 42, + 34, + 53, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 115, + 47, + 123, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 95, + 105, + 100, + 125, + 47, + 97, + 99, + 116, + 105, + 118, + 97, + 116, + 101, + ]), + ], + }, + }, }, deleteWorkflowTemplate: { name: "DeleteWorkflowTemplate", @@ -3474,7 +3694,61 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: DeleteWorkflowTemplateResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 42, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 115, + 47, + 123, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listWorkflowTemplates: { name: "ListWorkflowTemplates", @@ -3482,7 +3756,47 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: ListWorkflowTemplatesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 116, + 101, + 109, + 112, + 108, + 97, + 116, + 101, + 115, + ]), + ], + }, + }, }, }, } as const; @@ -3503,7 +3817,50 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: StartWorkflowInstanceResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 35, + 58, + 1, + 42, + 34, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 115, + ]), + ], + }, + }, }, getWorkflowInstance: { name: "GetWorkflowInstance", @@ -3511,7 +3868,61 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: GetWorkflowInstanceResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 46, + 18, + 44, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 115, + 47, + 123, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 95, + 105, + 100, + 125, + ]), + ], + }, + }, }, listWorkflowInstances: { name: "ListWorkflowInstances", @@ -3519,7 +3930,47 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: ListWorkflowInstancesResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 32, + 18, + 30, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 115, + ]), + ], + }, + }, }, /** Advance approves the current step. If it was the last step, status becomes LOCKED. */ advanceWorkflowInstance: { @@ -3528,7 +3979,72 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: AdvanceWorkflowInstanceResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 57, + 58, + 1, + 42, + 34, + 52, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 115, + 47, + 123, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 95, + 105, + 100, + 125, + 47, + 97, + 100, + 118, + 97, + 110, + 99, + 101, + ]), + ], + }, + }, }, /** Reject sets status REJECTED with the supplied comment. */ rejectWorkflowInstance: { @@ -3537,7 +4053,71 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: RejectWorkflowInstanceResponse, responseStream: false, - options: {}, + options: { + _unknownFields: { + 578365826: [ + new Uint8Array([ + 56, + 58, + 1, + 42, + 34, + 51, + 47, + 97, + 112, + 105, + 47, + 118, + 49, + 47, + 105, + 97, + 109, + 47, + 119, + 111, + 114, + 107, + 102, + 108, + 111, + 119, + 45, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 115, + 47, + 123, + 105, + 110, + 115, + 116, + 97, + 110, + 99, + 101, + 95, + 105, + 100, + 125, + 47, + 114, + 101, + 106, + 101, + 99, + 116, + ]), + ], + }, + }, }, }, } as const; From 8456f80fa9ca6a9fa978dbf8590c366839dd8681 Mon Sep 17 00:00:00 2001 From: ilhom Date: Wed, 1 Jul 2026 09:30:51 +0700 Subject: [PATCH 03/12] Revert "chore(gen): regenerate for permission menu_id validation update" This reverts commit 2ecb911b80917eb15fd7462deeef97c3c4a8b1f8. --- src/types/generated/finance/v1/bi.ts | 1482 +------- .../generated/finance/v1/cost_attachment.ts | 335 +- .../generated/finance/v1/cost_audit_log.ts | 43 +- .../finance/v1/cost_fill_assignment.ts | 421 +-- .../generated/finance/v1/cost_notification.ts | 240 +- .../finance/v1/cost_paper_tube_type.ts | 49 +- .../finance/v1/cost_product_request.ts | 1830 +--------- .../generated/finance/v1/cost_product_type.ts | 374 +- .../finance/v1/cost_request_comment.ts | 467 +-- .../generated/finance/v1/cost_rm_type.ts | 190 +- .../generated/finance/v1/cost_routing_rule.ts | 266 +- src/types/generated/finance/v1/formula.ts | 359 +- src/types/generated/finance/v1/parameter.ts | 369 +- src/types/generated/finance/v1/rm_category.ts | 411 +-- src/types/generated/finance/v1/rm_cost.ts | 623 +--- src/types/generated/finance/v1/rm_group.ts | 873 +---- src/types/generated/finance/v1/uom.ts | 315 +- .../generated/finance/v1/uom_category.ts | 422 +-- src/types/generated/finance/v1/yarn_master.ts | 3109 +---------------- src/types/generated/iam/v1/audit.ts | 160 +- src/types/generated/iam/v1/auth.ts | 657 +--- src/types/generated/iam/v1/cms.ts | 720 +--- src/types/generated/iam/v1/company_mapping.ts | 269 +- src/types/generated/iam/v1/employee_group.ts | 404 +-- src/types/generated/iam/v1/employee_level.ts | 690 +--- src/types/generated/iam/v1/menu.ts | 552 +-- src/types/generated/iam/v1/notification.ts | 463 +-- src/types/generated/iam/v1/organization.ts | 1401 +------- src/types/generated/iam/v1/role.ts | 845 +---- src/types/generated/iam/v1/session.ts | 127 +- src/types/generated/iam/v1/user.ts | 862 +---- src/types/generated/iam/v1/workflow.ts | 602 +--- 32 files changed, 397 insertions(+), 19533 deletions(-) diff --git a/src/types/generated/finance/v1/bi.ts b/src/types/generated/finance/v1/bi.ts index 70add23..dd196b5 100644 --- a/src/types/generated/finance/v1/bi.ts +++ b/src/types/generated/finance/v1/bi.ts @@ -10170,49 +10170,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: CreateDashboardResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 58, - 1, - 42, - 34, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetDashboard returns a dashboard by ID. */ getDashboard: { @@ -10221,61 +10179,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: GetDashboardResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 18, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 123, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** GetDashboardByCode returns a dashboard by its business code. */ getDashboardByCode: { @@ -10284,71 +10188,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: GetDashboardByCodeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 56, - 18, - 54, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 98, - 121, - 45, - 99, - 111, - 100, - 101, - 47, - 123, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 95, - 99, - 111, - 100, - 101, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListDashboards returns paginated dashboards for admin. */ listDashboards: { @@ -10357,46 +10197,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListDashboardsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateDashboard mutates an existing dashboard. */ updateDashboard: { @@ -10405,64 +10206,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: UpdateDashboardResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 58, - 1, - 42, - 26, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 123, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteDashboard soft-deletes a dashboard. */ deleteDashboard: { @@ -10471,61 +10215,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: DeleteDashboardResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 42, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 123, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DuplicateDashboard clones a dashboard with a new code/title. */ duplicateDashboard: { @@ -10534,74 +10224,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: DuplicateDashboardResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 59, - 58, - 1, - 42, - 34, - 54, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 123, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 95, - 105, - 100, - 125, - 47, - 100, - 117, - 112, - 108, - 105, - 99, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** SetDashboardRoles overwrites the dashboard's role whitelist. */ setDashboardRoles: { @@ -10610,70 +10233,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: SetDashboardRolesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 55, - 58, - 1, - 42, - 26, - 50, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 123, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 95, - 105, - 100, - 125, - 47, - 114, - 111, - 108, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** ListAccessibleDashboards returns dashboards visible to the calling user (for viewer sidebar). */ listAccessibleDashboards: { @@ -10682,57 +10242,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListAccessibleDashboardsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 18, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 97, - 99, - 99, - 101, - 115, - 115, - 105, - 98, - 108, - 101, - ]), - ], - }, - }, + options: {}, }, /** ListFeaturedDashboards returns dashboards pinned to the Executive Dashboard landing page. */ listFeaturedDashboards: { @@ -10741,55 +10251,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListFeaturedDashboardsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 40, - 18, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 102, - 101, - 97, - 116, - 117, - 114, - 101, - 100, - ]), - ], - }, - }, + options: {}, }, /** CreateDashboardGroup creates a new dashboard group. */ createDashboardGroup: { @@ -10798,45 +10260,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: CreateDashboardGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 58, - 1, - 42, - 34, - 25, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 103, - 114, - 111, - 117, - 112, - 115, - ]), - ], - }, - }, + options: {}, }, /** ListDashboardGroups returns dashboard groups. */ listDashboardGroups: { @@ -10845,42 +10269,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListDashboardGroupsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 27, - 18, - 25, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 103, - 114, - 111, - 117, - 112, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateDashboardGroup mutates a group. */ updateDashboardGroup: { @@ -10889,56 +10278,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: UpdateDashboardGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 58, - 1, - 42, - 26, - 36, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteDashboardGroup soft-deletes a group. */ deleteDashboardGroup: { @@ -10947,53 +10287,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: DeleteDashboardGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 42, - 36, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListConfigAudit returns the dashboard/group configuration change history. */ listConfigAudit: { @@ -11002,41 +10296,7 @@ export const DashboardServiceDefinition = { requestStream: false, responseType: ListConfigAuditResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 97, - 117, - 100, - 105, - 116, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -11054,68 +10314,7 @@ export const ChartDataServiceDefinition = { requestStream: false, responseType: GetDashboardDataResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 53, - 18, - 51, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 115, - 47, - 123, - 100, - 97, - 115, - 104, - 98, - 111, - 97, - 114, - 100, - 95, - 99, - 111, - 100, - 101, - 125, - 47, - 100, - 97, - 116, - 97, - ]), - ], - }, - }, + options: {}, }, /** PreviewDashboard renders an unsaved dashboard config against real fact data (admin only). */ previewDashboard: { @@ -11124,46 +10323,7 @@ export const ChartDataServiceDefinition = { requestStream: false, responseType: PreviewDashboardResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 58, - 1, - 42, - 34, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 112, - 114, - 101, - 118, - 105, - 101, - 119, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -11181,48 +10341,7 @@ export const DataSourceServiceDefinition = { requestStream: false, responseType: ListDataSourcesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 100, - 97, - 116, - 97, - 45, - 115, - 111, - 117, - 114, - 99, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetFactDistincts returns distinct type/group_1/group_2/group_3 values for an optional type filter. */ getFactDistincts: { @@ -11231,50 +10350,7 @@ export const DataSourceServiceDefinition = { requestStream: false, responseType: GetFactDistinctsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 102, - 97, - 99, - 116, - 47, - 100, - 105, - 115, - 116, - 105, - 110, - 99, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -11292,40 +10368,7 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: ListJobsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 25, - 18, - 23, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 106, - 111, - 98, - 115, - ]), - ], - }, - }, + options: {}, }, /** ListJobLogs returns logs for a specific job. */ listJobLogs: { @@ -11334,54 +10377,7 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: ListJobLogsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 106, - 111, - 98, - 115, - 47, - 123, - 106, - 111, - 98, - 95, - 105, - 100, - 125, - 47, - 108, - 111, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** TriggerJob manually triggers an ETL job run. */ triggerJob: { @@ -11390,60 +10386,7 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: TriggerJobResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 58, - 1, - 42, - 34, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 106, - 111, - 98, - 115, - 47, - 123, - 106, - 111, - 98, - 95, - 105, - 100, - 125, - 47, - 116, - 114, - 105, - 103, - 103, - 101, - 114, - ]), - ], - }, - }, + options: {}, }, /** CreateBiJob registers a new ETL job in the bi_job registry. */ createBiJob: { @@ -11452,43 +10395,7 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: CreateBiJobResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 58, - 1, - 42, - 34, - 23, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 106, - 111, - 98, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateBiJob mutates schedule_cron, oracle_procedure, config, or is_active. */ updateBiJob: { @@ -11497,52 +10404,7 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: UpdateBiJobResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 26, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 106, - 111, - 98, - 115, - 47, - 123, - 106, - 111, - 98, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteBiJob soft-disables a job (sets is_active=false, preserves logs). */ deleteBiJob: { @@ -11551,49 +10413,7 @@ export const BiJobServiceDefinition = { requestStream: false, responseType: DeleteBiJobResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 42, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 106, - 111, - 98, - 115, - 47, - 123, - 106, - 111, - 98, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -11614,52 +10434,7 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: DownloadUploadTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 18, - 35, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 117, - 112, - 108, - 111, - 97, - 100, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** ParseUpload parses an uploaded .xlsx, validates rows, writes to staging, returns a preview. */ parseUpload: { @@ -11668,52 +10443,7 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: ParseUploadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 34, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 117, - 112, - 108, - 111, - 97, - 100, - 115, - 47, - 112, - 97, - 114, - 115, - 101, - ]), - ], - }, - }, + options: {}, }, /** CommitUpload UPSERTs the staged rows of a previewed session into fact_metric. */ commitUpload: { @@ -11722,65 +10452,7 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: CommitUploadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 58, - 1, - 42, - 34, - 45, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 117, - 112, - 108, - 111, - 97, - 100, - 115, - 47, - 123, - 117, - 112, - 108, - 111, - 97, - 100, - 95, - 105, - 100, - 125, - 47, - 99, - 111, - 109, - 109, - 105, - 116, - ]), - ], - }, - }, + options: {}, }, /** CancelUpload discards a previewed session without committing. */ cancelUpload: { @@ -11789,65 +10461,7 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: CancelUploadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 58, - 1, - 42, - 34, - 45, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 117, - 112, - 108, - 111, - 97, - 100, - 115, - 47, - 123, - 117, - 112, - 108, - 111, - 97, - 100, - 95, - 105, - 100, - 125, - 47, - 99, - 97, - 110, - 99, - 101, - 108, - ]), - ], - }, - }, + options: {}, }, /** ListUploads returns paginated upload session history. */ listUploads: { @@ -11856,43 +10470,7 @@ export const BiUploadServiceDefinition = { requestStream: false, responseType: ListUploadsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 18, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 105, - 47, - 117, - 112, - 108, - 111, - 97, - 100, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_attachment.ts b/src/types/generated/finance/v1/cost_attachment.ts index a6cb0e4..7dd73a1 100644 --- a/src/types/generated/finance/v1/cost_attachment.ts +++ b/src/types/generated/finance/v1/cost_attachment.ts @@ -1106,59 +1106,7 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: UploadCostAttachmentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 34, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 97, - 116, - 116, - 97, - 99, - 104, - 109, - 101, - 110, - 116, - 115, - 47, - 117, - 112, - 108, - 111, - 97, - 100, - ]), - ], - }, - }, + options: {}, }, listCostAttachmentsByRequest: { name: "ListCostAttachmentsByRequest", @@ -1166,79 +1114,7 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: ListCostAttachmentsByRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 64, - 18, - 62, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 97, - 116, - 116, - 97, - 99, - 104, - 109, - 101, - 110, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, listCostAttachmentsByComment: { name: "ListCostAttachmentsByComment", @@ -1246,79 +1122,7 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: ListCostAttachmentsByCommentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 64, - 18, - 62, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - 47, - 97, - 116, - 116, - 97, - 99, - 104, - 109, - 101, - 110, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, getCostAttachmentDownloadURL: { name: "GetCostAttachmentDownloadURL", @@ -1326,78 +1130,7 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: GetCostAttachmentDownloadURLResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 63, - 18, - 61, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 97, - 116, - 116, - 97, - 99, - 104, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 97, - 116, - 116, - 97, - 99, - 104, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - 47, - 100, - 111, - 119, - 110, - 108, - 111, - 97, - 100, - 45, - 117, - 114, - 108, - ]), - ], - }, - }, + options: {}, }, deleteCostAttachment: { name: "DeleteCostAttachment", @@ -1405,65 +1138,7 @@ export const CostAttachmentServiceDefinition = { requestStream: false, responseType: DeleteCostAttachmentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 42, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 97, - 116, - 116, - 97, - 99, - 104, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 97, - 116, - 116, - 97, - 99, - 104, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_audit_log.ts b/src/types/generated/finance/v1/cost_audit_log.ts index 1284b31..2b2ed85 100644 --- a/src/types/generated/finance/v1/cost_audit_log.ts +++ b/src/types/generated/finance/v1/cost_audit_log.ts @@ -534,48 +534,7 @@ export const CostAuditLogServiceDefinition = { requestStream: false, responseType: ListCostAuditLogsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 97, - 117, - 100, - 105, - 116, - 45, - 108, - 111, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_fill_assignment.ts b/src/types/generated/finance/v1/cost_fill_assignment.ts index 3244b14..f1868b0 100644 --- a/src/types/generated/finance/v1/cost_fill_assignment.ts +++ b/src/types/generated/finance/v1/cost_fill_assignment.ts @@ -2499,48 +2499,7 @@ export const CostLevelAssignmentConfigServiceDefinition = { requestStream: false, responseType: UpsertLevelConfigResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 58, - 1, - 42, - 26, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 99, - 111, - 110, - 102, - 105, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** DeleteGlobalConfig removes the global-tier config for a route level. */ deleteGlobalConfig: { @@ -2549,66 +2508,7 @@ export const CostLevelAssignmentConfigServiceDefinition = { requestStream: false, responseType: DeleteGlobalConfigResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 42, - 49, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 99, - 111, - 110, - 102, - 105, - 103, - 115, - 47, - 103, - 108, - 111, - 98, - 97, - 108, - 47, - 123, - 114, - 111, - 117, - 116, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListGlobalConfigs returns all global-tier assignment configs. */ listGlobalConfigs: { @@ -2617,52 +2517,7 @@ export const CostLevelAssignmentConfigServiceDefinition = { requestStream: false, responseType: ListGlobalConfigsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 18, - 35, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 99, - 111, - 110, - 102, - 105, - 103, - 115, - 47, - 103, - 108, - 111, - 98, - 97, - 108, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -2680,43 +2535,7 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: ListFillTasksResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 18, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 116, - 97, - 115, - 107, - 115, - ]), - ], - }, - }, + options: {}, }, /** ClaimFillTask assigns the authenticated user as the active filler. */ claimFillTask: { @@ -2725,62 +2544,7 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: ClaimFillTaskResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 47, - 58, - 1, - 42, - 34, - 42, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 116, - 97, - 115, - 107, - 115, - 47, - 123, - 116, - 97, - 115, - 107, - 95, - 105, - 100, - 125, - 47, - 99, - 108, - 97, - 105, - 109, - ]), - ], - }, - }, + options: {}, }, /** SubmitFillTask marks all parameters as filled and requests approver review. */ submitFillTask: { @@ -2789,63 +2553,7 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: SubmitFillTaskResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 48, - 58, - 1, - 42, - 34, - 43, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 116, - 97, - 115, - 107, - 115, - 47, - 123, - 116, - 97, - 115, - 107, - 95, - 105, - 100, - 125, - 47, - 115, - 117, - 98, - 109, - 105, - 116, - ]), - ], - }, - }, + options: {}, }, /** ApproveFillTask approves a submitted fill task. */ approveFillTask: { @@ -2854,64 +2562,7 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: ApproveFillTaskResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 58, - 1, - 42, - 34, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 116, - 97, - 115, - 107, - 115, - 47, - 123, - 116, - 97, - 115, - 107, - 95, - 105, - 100, - 125, - 47, - 97, - 112, - 112, - 114, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** RejectFillTask rejects a submitted fill task and returns it to the filler. */ rejectFillTask: { @@ -2920,63 +2571,7 @@ export const CostFillTaskServiceDefinition = { requestStream: false, responseType: RejectFillTaskResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 48, - 58, - 1, - 42, - 34, - 43, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 105, - 108, - 108, - 45, - 116, - 97, - 115, - 107, - 115, - 47, - 123, - 116, - 97, - 115, - 107, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 106, - 101, - 99, - 116, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_notification.ts b/src/types/generated/finance/v1/cost_notification.ts index 3af7d3a..7b0434d 100644 --- a/src/types/generated/finance/v1/cost_notification.ts +++ b/src/types/generated/finance/v1/cost_notification.ts @@ -877,51 +877,7 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: ListMyCostNotificationsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, getMyCostNotificationUnreadCount: { name: "GetMyCostNotificationUnreadCount", @@ -929,64 +885,7 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: GetMyCostNotificationUnreadCountResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 18, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 117, - 110, - 114, - 101, - 97, - 100, - 45, - 99, - 111, - 117, - 110, - 116, - ]), - ], - }, - }, + options: {}, }, markCostNotificationRead: { name: "MarkCostNotificationRead", @@ -994,77 +893,7 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: MarkCostNotificationReadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 97, - 100, - ]), - ], - }, - }, + options: {}, }, markAllMyCostNotificationsRead: { name: "MarkAllMyCostNotificationsRead", @@ -1072,68 +901,7 @@ export const CostNotificationServiceDefinition = { requestStream: false, responseType: MarkAllMyCostNotificationsReadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 53, - 58, - 1, - 42, - 34, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 109, - 97, - 114, - 107, - 45, - 97, - 108, - 108, - 45, - 114, - 101, - 97, - 100, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_paper_tube_type.ts b/src/types/generated/finance/v1/cost_paper_tube_type.ts index 3351e46..60f9072 100644 --- a/src/types/generated/finance/v1/cost_paper_tube_type.ts +++ b/src/types/generated/finance/v1/cost_paper_tube_type.ts @@ -354,54 +354,7 @@ export const CostPaperTubeTypeServiceDefinition = { requestStream: false, responseType: ListCostPaperTubeTypesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 97, - 112, - 101, - 114, - 45, - 116, - 117, - 98, - 101, - 45, - 116, - 121, - 112, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_product_request.ts b/src/types/generated/finance/v1/cost_product_request.ts index 2812dd6..793b7c5 100644 --- a/src/types/generated/finance/v1/cost_product_request.ts +++ b/src/types/generated/finance/v1/cost_product_request.ts @@ -6990,57 +6990,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: CreateCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 34, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, getCostProductRequest: { name: "GetCostProductRequest", @@ -7048,67 +6998,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 52, - 18, - 50, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, getCostProductRequestByNo: { name: "GetCostProductRequestByNo", @@ -7116,73 +7006,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetCostProductRequestByNoResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 58, - 18, - 56, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 98, - 121, - 45, - 110, - 111, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 110, - 111, - 125, - ]), - ], - }, - }, + options: {}, }, updateCostProductRequest: { name: "UpdateCostProductRequest", @@ -7190,70 +7014,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: UpdateCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 55, - 58, - 1, - 42, - 26, - 50, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listCostProductRequests: { name: "ListCostProductRequests", @@ -7261,54 +7022,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ListCostProductRequestsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, submitCostProductRequest: { name: "SubmitCostProductRequest", @@ -7316,77 +7030,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: SubmitCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 115, - 117, - 98, - 109, - 105, - 116, - ]), - ], - }, - }, + options: {}, }, startCostProductRequestReview: { name: "StartCostProductRequestReview", @@ -7394,83 +7038,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: StartCostProductRequestReviewResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 68, - 58, - 1, - 42, - 34, - 63, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 115, - 116, - 97, - 114, - 116, - 45, - 114, - 101, - 118, - 105, - 101, - 119, - ]), - ], - }, - }, + options: {}, }, verifyCostProductRequestClassification: { name: "VerifyCostProductRequestClassification", @@ -7478,92 +7046,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: VerifyCostProductRequestClassificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 77, - 58, - 1, - 42, - 34, - 72, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 118, - 101, - 114, - 105, - 102, - 121, - 45, - 99, - 108, - 97, - 115, - 115, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - ]), - ], - }, - }, + options: {}, }, decideCostProductRequestFeasibility: { name: "DecideCostProductRequestFeasibility", @@ -7571,89 +7054,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: DecideCostProductRequestFeasibilityResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 74, - 58, - 1, - 42, - 34, - 69, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 100, - 101, - 99, - 105, - 100, - 101, - 45, - 102, - 101, - 97, - 115, - 105, - 98, - 105, - 108, - 105, - 116, - 121, - ]), - ], - }, - }, + options: {}, }, useExistingCostingForCostProductRequest: { name: "UseExistingCostingForCostProductRequest", @@ -7661,91 +7062,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: UseExistingCostingForCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 76, - 58, - 1, - 42, - 34, - 71, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 117, - 115, - 101, - 45, - 101, - 120, - 105, - 115, - 116, - 105, - 110, - 103, - 45, - 99, - 111, - 115, - 116, - 105, - 110, - 103, - ]), - ], - }, - }, + options: {}, }, rejectCostProductRequest: { name: "RejectCostProductRequest", @@ -7753,77 +7070,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: RejectCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 106, - 101, - 99, - 116, - ]), - ], - }, - }, + options: {}, }, reviseCostProductRequest: { name: "ReviseCostProductRequest", @@ -7831,77 +7078,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ReviseCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 118, - 105, - 115, - 101, - ]), - ], - }, - }, + options: {}, }, /** ReopenCostProductRequest moves a CLOSED request back to DRAFT. */ reopenCostProductRequest: { @@ -7910,77 +7087,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ReopenCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 111, - 112, - 101, - 110, - ]), - ], - }, - }, + options: {}, }, /** * MarkParameterPending advances ROUTING_DEFINED → PARAMETER_PENDING and @@ -7992,93 +7099,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: MarkParameterPendingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 78, - 58, - 1, - 42, - 34, - 73, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 109, - 97, - 114, - 107, - 45, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 45, - 112, - 101, - 110, - 100, - 105, - 110, - 103, - ]), - ], - }, - }, + options: {}, }, /** * MarkParameterComplete advances PARAMETER_PENDING → PARAMETER_COMPLETE @@ -8090,94 +7111,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: MarkParameterCompleteResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 79, - 58, - 1, - 42, - 34, - 74, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 109, - 97, - 114, - 107, - 45, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 45, - 99, - 111, - 109, - 112, - 108, - 101, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, cancelCostProductRequest: { name: "CancelCostProductRequest", @@ -8185,77 +7119,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: CancelCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 99, - 97, - 110, - 99, - 101, - 108, - ]), - ], - }, - }, + options: {}, }, closeCostProductRequest: { name: "CloseCostProductRequest", @@ -8263,76 +7127,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: CloseCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 61, - 58, - 1, - 42, - 34, - 56, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 99, - 108, - 111, - 115, - 101, - ]), - ], - }, - }, + options: {}, }, assignCostProductRequest: { name: "AssignCostProductRequest", @@ -8340,77 +7135,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: AssignCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 97, - 115, - 115, - 105, - 103, - 110, - ]), - ], - }, - }, + options: {}, }, /** LinkExistingRoute attaches an existing route_head to the request. */ linkExistingRoute: { @@ -8419,81 +7144,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: LinkExistingRouteResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 66, - 58, - 1, - 42, - 34, - 61, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 108, - 105, - 110, - 107, - 45, - 114, - 111, - 117, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** UnlinkRoute clears both existing-product and linked-route fields. */ unlinkRoute: { @@ -8502,83 +7153,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: UnlinkRouteResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 68, - 58, - 1, - 42, - 34, - 63, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 117, - 110, - 108, - 105, - 110, - 107, - 45, - 114, - 111, - 117, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** ConfirmCostProductRequest advances PARAMETER_COMPLETE → CONFIRMED. */ confirmCostProductRequest: { @@ -8587,78 +7162,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ConfirmCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 63, - 58, - 1, - 42, - 34, - 58, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 99, - 111, - 110, - 102, - 105, - 114, - 109, - ]), - ], - }, - }, + options: {}, }, /** ApproveCostProductRequest advances CONFIRMED → APPROVED. */ approveCostProductRequest: { @@ -8667,78 +7171,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ApproveCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 63, - 58, - 1, - 42, - 34, - 58, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 97, - 112, - 112, - 114, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** * ReleaseCostProductRequest advances APPROVED → RELEASED. @@ -8750,78 +7183,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: ReleaseCostProductRequestResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 63, - 58, - 1, - 42, - 34, - 58, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 108, - 101, - 97, - 115, - 101, - ]), - ], - }, - }, + options: {}, }, /** GetCostProductRequestHistory returns the full status-transition timeline for a request. */ getCostProductRequestHistory: { @@ -8830,75 +7192,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetCostProductRequestHistoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 60, - 18, - 58, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 104, - 105, - 115, - 116, - 111, - 114, - 121, - ]), - ], - }, - }, + options: {}, }, /** * GetParamSummary returns all param values for the request grouped by product @@ -8910,81 +7204,7 @@ export const CostProductRequestServiceDefinition = { requestStream: false, responseType: GetParamSummaryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 66, - 18, - 64, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 112, - 97, - 114, - 97, - 109, - 45, - 115, - 117, - 109, - 109, - 97, - 114, - 121, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_product_type.ts b/src/types/generated/finance/v1/cost_product_type.ts index d5c8ed4..ccae884 100644 --- a/src/types/generated/finance/v1/cost_product_type.ts +++ b/src/types/generated/finance/v1/cost_product_type.ts @@ -1555,54 +1555,7 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: CreateCostProductTypeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 34, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 116, - 121, - 112, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, getCostProductType: { name: "GetCostProductType", @@ -1610,61 +1563,7 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: GetCostProductTypeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 18, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 116, - 121, - 112, - 101, - 115, - 47, - 123, - 116, - 121, - 112, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateCostProductType: { name: "UpdateCostProductType", @@ -1672,64 +1571,7 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: UpdateCostProductTypeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 58, - 1, - 42, - 26, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 116, - 121, - 112, - 101, - 115, - 47, - 123, - 116, - 121, - 112, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listCostProductTypes: { name: "ListCostProductTypes", @@ -1737,51 +1579,7 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: ListCostProductTypesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 116, - 121, - 112, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, exportCostProductTypes: { name: "ExportCostProductTypes", @@ -1789,58 +1587,7 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: ExportCostProductTypesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 18, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 116, - 121, - 112, - 101, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importCostProductTypes: { name: "ImportCostProductTypes", @@ -1848,61 +1595,7 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: ImportCostProductTypesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 58, - 1, - 42, - 34, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 116, - 121, - 112, - 101, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadCostProductTypeTemplate: { name: "DownloadCostProductTypeTemplate", @@ -1910,60 +1603,7 @@ export const CostProductTypeServiceDefinition = { requestStream: false, responseType: DownloadCostProductTypeTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 18, - 43, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 116, - 121, - 112, - 101, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_request_comment.ts b/src/types/generated/finance/v1/cost_request_comment.ts index a103ef6..0a3667f 100644 --- a/src/types/generated/finance/v1/cost_request_comment.ts +++ b/src/types/generated/finance/v1/cost_request_comment.ts @@ -1747,57 +1747,7 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: CreateCostRequestCommentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 34, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, updateCostRequestComment: { name: "UpdateCostRequestComment", @@ -1805,70 +1755,7 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: UpdateCostRequestCommentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 55, - 58, - 1, - 42, - 26, - 50, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, hideCostRequestComment: { name: "HideCostRequestComment", @@ -1876,75 +1763,7 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: HideCostRequestCommentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 60, - 58, - 1, - 42, - 34, - 55, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - 47, - 104, - 105, - 100, - 101, - ]), - ], - }, - }, + options: {}, }, unhideCostRequestComment: { name: "UnhideCostRequestComment", @@ -1952,77 +1771,7 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: UnhideCostRequestCommentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 62, - 58, - 1, - 42, - 34, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - 47, - 117, - 110, - 104, - 105, - 100, - 101, - ]), - ], - }, - }, + options: {}, }, deleteCostRequestComment: { name: "DeleteCostRequestComment", @@ -2030,67 +1779,7 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: DeleteCostRequestCommentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 52, - 42, - 50, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listCostRequestComments: { name: "ListCostRequestComments", @@ -2098,76 +1787,7 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: ListCostRequestCommentsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 61, - 18, - 59, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 115, - 47, - 123, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, listCostCommentEditHistory: { name: "ListCostCommentEditHistory", @@ -2175,80 +1795,7 @@ export const CostRequestCommentServiceDefinition = { requestStream: false, responseType: ListCostCommentEditHistoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 65, - 18, - 63, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 99, - 111, - 109, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - 47, - 101, - 100, - 105, - 116, - 45, - 104, - 105, - 115, - 116, - 111, - 114, - 121, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_rm_type.ts b/src/types/generated/finance/v1/cost_rm_type.ts index 221f5ad..f3c8d7c 100644 --- a/src/types/generated/finance/v1/cost_rm_type.ts +++ b/src/types/generated/finance/v1/cost_rm_type.ts @@ -1017,49 +1017,7 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: CreateCostRmTypeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 58, - 1, - 42, - 34, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 109, - 45, - 116, - 121, - 112, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, getCostRmType: { name: "GetCostRmType", @@ -1067,56 +1025,7 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: GetCostRmTypeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 109, - 45, - 116, - 121, - 112, - 101, - 115, - 47, - 123, - 116, - 121, - 112, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateCostRmType: { name: "UpdateCostRmType", @@ -1124,59 +1033,7 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: UpdateCostRmTypeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 26, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 109, - 45, - 116, - 121, - 112, - 101, - 115, - 47, - 123, - 116, - 121, - 112, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listCostRmTypes: { name: "ListCostRmTypes", @@ -1184,46 +1041,7 @@ export const CostRmTypeServiceDefinition = { requestStream: false, responseType: ListCostRmTypesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 109, - 45, - 116, - 121, - 112, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/cost_routing_rule.ts b/src/types/generated/finance/v1/cost_routing_rule.ts index 2fe7803..70c6ed2 100644 --- a/src/types/generated/finance/v1/cost_routing_rule.ts +++ b/src/types/generated/finance/v1/cost_routing_rule.ts @@ -1172,54 +1172,7 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: CreateCostRoutingRuleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 34, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 111, - 117, - 116, - 105, - 110, - 103, - 45, - 114, - 117, - 108, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, getCostRoutingRule: { name: "GetCostRoutingRule", @@ -1227,61 +1180,7 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: GetCostRoutingRuleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 18, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 111, - 117, - 116, - 105, - 110, - 103, - 45, - 114, - 117, - 108, - 101, - 115, - 47, - 123, - 114, - 117, - 108, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateCostRoutingRule: { name: "UpdateCostRoutingRule", @@ -1289,64 +1188,7 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: UpdateCostRoutingRuleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 58, - 1, - 42, - 26, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 111, - 117, - 116, - 105, - 110, - 103, - 45, - 114, - 117, - 108, - 101, - 115, - 47, - 123, - 114, - 117, - 108, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deleteCostRoutingRule: { name: "DeleteCostRoutingRule", @@ -1354,61 +1196,7 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: DeleteCostRoutingRuleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 42, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 111, - 117, - 116, - 105, - 110, - 103, - 45, - 114, - 117, - 108, - 101, - 115, - 47, - 123, - 114, - 117, - 108, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listCostRoutingRules: { name: "ListCostRoutingRules", @@ -1416,51 +1204,7 @@ export const CostRoutingRuleServiceDefinition = { requestStream: false, responseType: ListCostRoutingRulesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 99, - 111, - 115, - 116, - 45, - 114, - 111, - 117, - 116, - 105, - 110, - 103, - 45, - 114, - 117, - 108, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/formula.ts b/src/types/generated/finance/v1/formula.ts index 132c6e9..f4736fb 100644 --- a/src/types/generated/finance/v1/formula.ts +++ b/src/types/generated/finance/v1/formula.ts @@ -2498,44 +2498,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: CreateFormulaResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetFormula retrieves a formula by ID. */ getFormula: { @@ -2544,54 +2507,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: GetFormulaResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - 47, - 123, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateFormula updates an existing formula. @@ -2603,57 +2519,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: UpdateFormulaResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 26, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - 47, - 123, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteFormula soft deletes a formula. */ deleteFormula: { @@ -2662,54 +2528,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: DeleteFormulaResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 42, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - 47, - 123, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListFormulas lists formulas with search, filter, and pagination. */ listFormulas: { @@ -2718,41 +2537,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: ListFormulasResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportFormulas exports formulas to Excel file. */ exportFormulas: { @@ -2761,48 +2546,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: ExportFormulasResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportFormulas imports formulas from Excel file. */ importFormulas: { @@ -2811,51 +2555,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: ImportFormulasResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 58, - 1, - 42, - 34, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadFormulaTemplate downloads the Excel import template. */ downloadFormulaTemplate: { @@ -2864,50 +2564,7 @@ export const FormulaServiceDefinition = { requestStream: false, responseType: DownloadFormulaTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 102, - 111, - 114, - 109, - 117, - 108, - 97, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/parameter.ts b/src/types/generated/finance/v1/parameter.ts index 0cdf7eb..7b448f2 100644 --- a/src/types/generated/finance/v1/parameter.ts +++ b/src/types/generated/finance/v1/parameter.ts @@ -3203,46 +3203,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: CreateParameterResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 58, - 1, - 42, - 34, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetParameter retrieves a parameter by ID. */ getParameter: { @@ -3251,54 +3212,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: GetParameterResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - 47, - 123, - 112, - 97, - 114, - 97, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateParameter updates an existing parameter. @@ -3310,57 +3224,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: UpdateParameterResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 26, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - 47, - 123, - 112, - 97, - 114, - 97, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteParameter soft deletes a parameter. */ deleteParameter: { @@ -3369,54 +3233,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: DeleteParameterResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 42, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - 47, - 123, - 112, - 97, - 114, - 97, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListParameters lists parameters with search, filter, and pagination. */ listParameters: { @@ -3425,43 +3242,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: ListParametersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 18, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportParameters exports parameters to Excel file. */ exportParameters: { @@ -3470,50 +3251,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: ExportParametersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportParameters imports parameters from Excel file. */ importParameters: { @@ -3522,53 +3260,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: ImportParametersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 58, - 1, - 42, - 34, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadParameterTemplate downloads the Excel import template. */ downloadParameterTemplate: { @@ -3577,52 +3269,7 @@ export const ParameterServiceDefinition = { requestStream: false, responseType: DownloadParameterTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 18, - 35, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 97, - 114, - 97, - 109, - 101, - 116, - 101, - 114, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/rm_category.ts b/src/types/generated/finance/v1/rm_category.ts index ce04004..c9066ac 100644 --- a/src/types/generated/finance/v1/rm_category.ts +++ b/src/types/generated/finance/v1/rm_category.ts @@ -1860,49 +1860,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: CreateRMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 58, - 1, - 42, - 34, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetRMCategory retrieves a raw material category by ID. */ getRMCategory: { @@ -1911,63 +1869,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: GetRMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 48, - 18, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 123, - 114, - 109, - 95, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateRMCategory updates an existing raw material category. @@ -1979,66 +1881,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: UpdateRMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 58, - 1, - 42, - 26, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 123, - 114, - 109, - 95, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteRMCategory soft deletes a raw material category. */ deleteRMCategory: { @@ -2047,63 +1890,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: DeleteRMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 48, - 42, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 123, - 114, - 109, - 95, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListRMCategories lists raw material categories with search, filter, and pagination. */ listRMCategories: { @@ -2112,46 +1899,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: ListRMCategoriesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportRMCategories exports raw material categories to Excel file. */ exportRMCategories: { @@ -2160,53 +1908,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: ExportRMCategoriesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 18, - 36, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportRMCategories imports raw material categories from Excel file. */ importRMCategories: { @@ -2215,56 +1917,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: ImportRMCategoriesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 58, - 1, - 42, - 34, - 36, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadRMCategoryTemplate downloads the Excel import template. */ downloadRMCategoryTemplate: { @@ -2273,55 +1926,7 @@ export const RMCategoryServiceDefinition = { requestStream: false, responseType: DownloadRMCategoryTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 40, - 18, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/rm_cost.ts b/src/types/generated/finance/v1/rm_cost.ts index 731cb6b..bf25eb1 100644 --- a/src/types/generated/finance/v1/rm_cost.ts +++ b/src/types/generated/finance/v1/rm_cost.ts @@ -6123,52 +6123,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: TriggerRMCostCalculationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 34, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 116, - 114, - 105, - 103, - 103, - 101, - 114, - ]), - ], - }, - }, + options: {}, }, /** CalculateRMCost runs a recalculation synchronously (admin-only). */ calculateRMCost: { @@ -6177,54 +6132,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: CalculateRMCostResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 34, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 99, - 97, - 108, - 99, - 117, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** GetRMCost fetches a single cost row by (period, rm_code). */ getRMCost: { @@ -6233,60 +6141,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: GetRMCostResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 18, - 43, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 112, - 101, - 114, - 105, - 111, - 100, - 125, - 47, - 123, - 114, - 109, - 95, - 99, - 111, - 100, - 101, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListRMCosts lists cost rows with filter + pagination. */ listRMCosts: { @@ -6295,41 +6150,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListRMCostsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, /** ListRMCostHistory lists audit-history rows with filter + pagination. */ listRMCostHistory: { @@ -6338,49 +6159,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListRMCostHistoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 18, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 104, - 105, - 115, - 116, - 111, - 114, - 121, - ]), - ], - }, - }, + options: {}, }, /** ListRMCostPeriods returns distinct periods from cost rows (newest first). */ listRMCostPeriods: { @@ -6389,49 +6168,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListRMCostPeriodsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 18, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 112, - 101, - 114, - 105, - 111, - 100, - 115, - ]), - ], - }, - }, + options: {}, }, /** * ExportRMCosts exports cost rows matching the filter to a single-sheet Excel. @@ -6444,48 +6181,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ExportRMCostsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** * GetExportDownloadURL returns a short-lived presigned URL for downloading the @@ -6498,67 +6194,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: GetExportDownloadURLResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 52, - 18, - 50, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - 115, - 47, - 123, - 106, - 111, - 98, - 95, - 105, - 100, - 125, - 47, - 100, - 111, - 119, - 110, - 108, - 111, - 97, - 100, - ]), - ], - }, - }, + options: {}, }, /** * RequestRMCostExport queues an asynchronous export job. The worker renders a @@ -6573,59 +6209,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: RequestRMCostExportResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 34, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - 45, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** V2: ListCostDetails returns per-item snapshot rows for a cost row. */ listCostDetails: { @@ -6634,62 +6218,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: ListCostDetailsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 47, - 18, - 45, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 114, - 109, - 95, - 99, - 111, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 100, - 101, - 116, - 97, - 105, - 108, - 115, - ]), - ], - }, - }, + options: {}, }, /** * V2: UpdateRMCostInputs edits any of the per-row marketing snapshot inputs @@ -6703,64 +6232,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: UpdateRMCostInputsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 58, - 1, - 42, - 26, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 114, - 109, - 95, - 99, - 111, - 115, - 116, - 95, - 105, - 100, - 125, - 47, - 105, - 110, - 112, - 117, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, /** * V2: UpdateCostDetailFixRate sets fix_rate on one detail row, recomputes @@ -6773,78 +6245,7 @@ export const RMCostServiceDefinition = { requestStream: false, responseType: UpdateCostDetailFixRateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 63, - 58, - 1, - 42, - 26, - 58, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 100, - 101, - 116, - 97, - 105, - 108, - 115, - 47, - 123, - 99, - 111, - 115, - 116, - 95, - 100, - 101, - 116, - 97, - 105, - 108, - 95, - 105, - 100, - 125, - 47, - 102, - 105, - 120, - 45, - 114, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/rm_group.ts b/src/types/generated/finance/v1/rm_group.ts index 62cff0f..a3e054a 100644 --- a/src/types/generated/finance/v1/rm_group.ts +++ b/src/types/generated/finance/v1/rm_group.ts @@ -7277,45 +7277,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: CreateRMGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 58, - 1, - 42, - 34, - 25, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetRMGroup retrieves a group head + its details. */ getRMGroup: { @@ -7324,58 +7286,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: GetRMGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 18, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** UpdateRMGroup applies a partial update to a group head. */ updateRMGroup: { @@ -7384,61 +7295,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: UpdateRMGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 58, - 1, - 42, - 26, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteRMGroup soft-deletes a group head (cascade to its details). */ deleteRMGroup: { @@ -7447,58 +7304,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: DeleteRMGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 42, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListRMGroups lists group heads with search + filter + pagination. */ listRMGroups: { @@ -7507,42 +7313,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ListRMGroupsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 27, - 18, - 25, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - ]), - ], - }, - }, + options: {}, }, /** * AddItems assigns items to a group. Items already in another active group @@ -7554,67 +7325,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: AddItemsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 52, - 58, - 1, - 42, - 34, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - 47, - 105, - 116, - 101, - 109, - 115, - ]), - ], - }, - }, + options: {}, }, /** RemoveItems removes details from a group (deactivate or soft-delete). */ removeItems: { @@ -7623,74 +7334,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: RemoveItemsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 59, - 58, - 1, - 42, - 34, - 54, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - 47, - 105, - 116, - 101, - 109, - 115, - 47, - 114, - 101, - 109, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** V2: UpdateGroupItem updates one detail row's valuation fields + sort/active. */ updateGroupItem: { @@ -7699,85 +7343,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: UpdateGroupItemResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 70, - 58, - 1, - 42, - 26, - 65, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - 47, - 105, - 116, - 101, - 109, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 100, - 101, - 116, - 97, - 105, - 108, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * ListUngroupedItems reports items from the sync feed that have no active @@ -7789,52 +7355,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ListUngroupedItemsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 18, - 35, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 117, - 110, - 103, - 114, - 111, - 117, - 112, - 101, - 100, - ]), - ], - }, - }, + options: {}, }, /** * GetRMGroupItemRates returns per-item per-stage rates for every active @@ -7846,69 +7367,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: GetRMGroupItemRatesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 54, - 18, - 52, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - 47, - 105, - 116, - 101, - 109, - 45, - 114, - 97, - 116, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportRMGroups exports all groups + their items to a 2-sheet Excel. */ exportRMGroups: { @@ -7917,49 +7376,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ExportRMGroupsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 18, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** * ImportRMGroups imports groups and/or items from a 2-sheet Excel. Users can @@ -7971,52 +7388,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ImportRMGroupsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 34, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadRMGroupTemplate returns a blank 2-sheet Excel with header rows. */ downloadRMGroupTemplate: { @@ -8025,51 +7397,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: DownloadRMGroupTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** ExportUngroupedItems exports ungrouped items matching the filter to Excel. */ exportUngroupedItems: { @@ -8078,59 +7406,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ExportUngroupedItemsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 18, - 42, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 117, - 110, - 103, - 114, - 111, - 117, - 112, - 101, - 100, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** * ImportGroupItems bulk-assigns items to ONE existing group from a @@ -8143,74 +7419,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: ImportGroupItemsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 59, - 58, - 1, - 42, - 34, - 54, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 103, - 114, - 111, - 117, - 112, - 95, - 104, - 101, - 97, - 100, - 95, - 105, - 100, - 125, - 47, - 105, - 116, - 101, - 109, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** * DownloadGroupItemsTemplate returns a blank one-sheet Excel with just @@ -8222,57 +7431,7 @@ export const RMGroupServiceDefinition = { requestStream: false, responseType: DownloadGroupItemsTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 18, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 114, - 109, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 105, - 116, - 101, - 109, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/uom.ts b/src/types/generated/finance/v1/uom.ts index 556dd90..0a46727 100644 --- a/src/types/generated/finance/v1/uom.ts +++ b/src/types/generated/finance/v1/uom.ts @@ -2167,40 +2167,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: CreateUOMResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 25, - 58, - 1, - 42, - 34, - 20, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetUOM retrieves a UOM by ID. */ getUOM: { @@ -2209,46 +2176,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: GetUOMResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - 47, - 123, - 117, - 111, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateUOM updates an existing UOM. @@ -2260,49 +2188,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: UpdateUOMResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 58, - 1, - 42, - 26, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - 47, - 123, - 117, - 111, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteUOM soft deletes a UOM. */ deleteUOM: { @@ -2311,46 +2197,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: DeleteUOMResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 42, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - 47, - 123, - 117, - 111, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListUOMs lists UOMs with search, filter, and pagination. */ listUOMs: { @@ -2359,37 +2206,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: ListUOMsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 22, - 18, - 20, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportUOMs exports UOMs to Excel file. */ exportUOMs: { @@ -2398,44 +2215,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: ExportUOMsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportUOMs imports UOMs from Excel file. */ importUOMs: { @@ -2444,47 +2224,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: ImportUOMsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 34, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadTemplate downloads the Excel import template. */ downloadTemplate: { @@ -2493,46 +2233,7 @@ export const UOMServiceDefinition = { requestStream: false, responseType: DownloadTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/uom_category.ts b/src/types/generated/finance/v1/uom_category.ts index 8033b81..23cb2f1 100644 --- a/src/types/generated/finance/v1/uom_category.ts +++ b/src/types/generated/finance/v1/uom_category.ts @@ -1860,50 +1860,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: CreateUOMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetUOMCategory retrieves a UOM category by ID. */ getUOMCategory: { @@ -1912,65 +1869,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: GetUOMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 18, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 123, - 117, - 111, - 109, - 95, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateUOMCategory updates an existing UOM category. @@ -1982,68 +1881,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: UpdateUOMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 53, - 58, - 1, - 42, - 26, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 123, - 117, - 111, - 109, - 95, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteUOMCategory soft deletes a UOM category. */ deleteUOMCategory: { @@ -2052,65 +1890,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: DeleteUOMCategoryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 42, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 123, - 117, - 111, - 109, - 95, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListUOMCategories lists UOM categories with search, filter, and pagination. */ listUOMCategories: { @@ -2119,47 +1899,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: ListUOMCategoriesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportUOMCategories exports UOM categories to Excel file. */ exportUOMCategories: { @@ -2168,54 +1908,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: ExportUOMCategoriesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportUOMCategories imports UOM categories from Excel file. */ importUOMCategories: { @@ -2224,57 +1917,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: ImportUOMCategoriesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 34, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadUOMCategoryTemplate downloads the Excel import template. */ downloadUOMCategoryTemplate: { @@ -2283,56 +1926,7 @@ export const UOMCategoryServiceDefinition = { requestStream: false, responseType: DownloadUOMCategoryTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 117, - 111, - 109, - 45, - 99, - 97, - 116, - 101, - 103, - 111, - 114, - 105, - 101, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/finance/v1/yarn_master.ts b/src/types/generated/finance/v1/yarn_master.ts index 8020a02..1f69b2f 100644 --- a/src/types/generated/finance/v1/yarn_master.ts +++ b/src/types/generated/finance/v1/yarn_master.ts @@ -19339,44 +19339,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: CreateMachineResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetMachine retrieves a machine by ID. */ getMachine: { @@ -19385,54 +19348,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: GetMachineResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - 47, - 123, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListMachines lists machine records with search, filter, and pagination. */ listMachines: { @@ -19441,41 +19357,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: ListMachinesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateMachine updates an existing machine record. */ updateMachine: { @@ -19484,57 +19366,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: UpdateMachineResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 26, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - 47, - 123, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteMachine soft-deletes a machine record. */ deleteMachine: { @@ -19543,54 +19375,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: DeleteMachineResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 42, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - 47, - 123, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ExportMachines exports machine records to Excel. */ exportMachines: { @@ -19599,48 +19384,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: ExportMachinesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportMachines imports machine records from Excel. */ importMachines: { @@ -19649,51 +19393,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: ImportMachinesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 58, - 1, - 42, - 34, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadMachineTemplate downloads the Excel import template. */ downloadMachineTemplate: { @@ -19702,50 +19402,7 @@ export const MachineServiceDefinition = { requestStream: false, responseType: DownloadMachineTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 97, - 99, - 104, - 105, - 110, - 101, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -19763,52 +19420,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: CreateBoxBobbinCostResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 34, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetBoxBobbinCost retrieves a config by ID (includes rates). */ getBoxBobbinCost: { @@ -19817,58 +19429,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: GetBoxBobbinCostResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 18, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 98, - 98, - 99, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListBoxBobbinCosts lists configs with search, filter, and pagination. */ listBoxBobbinCosts: { @@ -19877,49 +19438,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: ListBoxBobbinCostsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 18, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateBoxBobbinCost updates an existing config. */ updateBoxBobbinCost: { @@ -19928,61 +19447,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: UpdateBoxBobbinCostResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 58, - 1, - 42, - 26, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 98, - 98, - 99, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteBoxBobbinCost soft-deletes a config. */ deleteBoxBobbinCost: { @@ -19991,58 +19456,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: DeleteBoxBobbinCostResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 42, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 98, - 98, - 99, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** CreateBoxBobbinCostRate adds a period rate entry to a config. */ createBoxBobbinCostRate: { @@ -20051,67 +19465,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: CreateBoxBobbinCostRateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 52, - 58, - 1, - 42, - 34, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 98, - 98, - 99, - 95, - 105, - 100, - 125, - 47, - 114, - 97, - 116, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** DeleteBoxBobbinCostRate removes a period rate entry. */ deleteBoxBobbinCostRate: { @@ -20120,74 +19474,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: DeleteBoxBobbinCostRateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 59, - 42, - 57, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 123, - 98, - 98, - 99, - 95, - 105, - 100, - 125, - 47, - 114, - 97, - 116, - 101, - 115, - 47, - 123, - 98, - 98, - 99, - 114, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ExportBoxBobbinCosts exports configs to Excel. */ exportBoxBobbinCosts: { @@ -20196,56 +19483,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: ExportBoxBobbinCostsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportBoxBobbinCosts imports configs from Excel. */ importBoxBobbinCosts: { @@ -20254,59 +19492,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: ImportBoxBobbinCostsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 34, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadBoxBobbinCostTemplate downloads the Excel import template. */ downloadBoxBobbinCostTemplate: { @@ -20315,58 +19501,7 @@ export const BoxBobbinCostServiceDefinition = { requestStream: false, responseType: DownloadBoxBobbinCostTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 18, - 41, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 98, - 111, - 120, - 45, - 98, - 111, - 98, - 98, - 105, - 110, - 45, - 99, - 111, - 115, - 116, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -20384,50 +19519,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: CreateInterminglingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetIntermingling retrieves an intermingling record by ID. */ getIntermingling: { @@ -20436,57 +19528,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: GetInterminglingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 18, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - 47, - 123, - 105, - 110, - 116, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListInterminglings lists intermingling records with search, filter, and pagination. */ listInterminglings: { @@ -20495,47 +19537,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: ListInterminglingsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateIntermingling updates an existing intermingling record. */ updateIntermingling: { @@ -20544,60 +19546,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: UpdateInterminglingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 58, - 1, - 42, - 26, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - 47, - 123, - 105, - 110, - 116, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteIntermingling soft-deletes an intermingling record. */ deleteIntermingling: { @@ -20606,57 +19555,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: DeleteInterminglingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 42, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - 47, - 123, - 105, - 110, - 116, - 109, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ExportInterminglings exports records to Excel. */ exportInterminglings: { @@ -20665,54 +19564,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: ExportInterminglingsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportInterminglings imports records from Excel. */ importInterminglings: { @@ -20721,57 +19573,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: ImportInterminglingsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 34, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadInterminglingTemplate downloads the Excel import template. */ downloadInterminglingTemplate: { @@ -20780,56 +19582,7 @@ export const InterminglingServiceDefinition = { requestStream: false, responseType: DownloadInterminglingTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 105, - 110, - 116, - 101, - 114, - 109, - 105, - 110, - 103, - 108, - 105, - 110, - 103, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -20847,50 +19600,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: CreateProductGradeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetProductGrade retrieves a Product Grade by ID. */ getProductGrade: { @@ -20899,55 +19609,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: GetProductGradeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 40, - 18, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - 47, - 123, - 112, - 103, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListProductGrades lists Product Grades with search, filter, and pagination. */ listProductGrades: { @@ -20956,47 +19618,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: ListProductGradesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateProductGrade updates an existing Product Grade. */ updateProductGrade: { @@ -21005,58 +19627,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: UpdateProductGradeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 58, - 1, - 42, - 26, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - 47, - 123, - 112, - 103, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteProductGrade soft-deletes a Product Grade. */ deleteProductGrade: { @@ -21065,55 +19636,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: DeleteProductGradeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 40, - 42, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - 47, - 123, - 112, - 103, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ExportProductGrades exports Product Grades to Excel. */ exportProductGrades: { @@ -21122,54 +19645,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: ExportProductGradesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportProductGrades imports Product Grades from Excel. */ importProductGrades: { @@ -21178,57 +19654,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: ImportProductGradesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 34, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadProductGradeTemplate downloads the Excel import template. */ downloadProductGradeTemplate: { @@ -21237,56 +19663,7 @@ export const ProductGradeServiceDefinition = { requestStream: false, responseType: DownloadProductGradeTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 112, - 114, - 111, - 100, - 117, - 99, - 116, - 45, - 103, - 114, - 97, - 100, - 101, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -21304,44 +19681,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: CreateMBHeadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetMBHead retrieves an MB Head record by ID. */ getMBHead: { @@ -21350,50 +19690,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: GetMBHeadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListMBHeads lists MB Head records with search, filter, and pagination. */ listMBHeads: { @@ -21402,41 +19699,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: ListMBHeadsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateMBHead updates an existing MB Head record. */ updateMBHead: { @@ -21445,53 +19708,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: UpdateMBHeadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 58, - 1, - 42, - 26, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteMBHead soft-deletes an MB Head record. */ deleteMBHead: { @@ -21500,50 +19717,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: DeleteMBHeadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 42, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ExportMBHeads exports MB Head records to Excel. */ exportMBHeads: { @@ -21552,48 +19726,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: ExportMBHeadsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportMBHeads imports MB Head records from Excel. */ importMBHeads: { @@ -21602,51 +19735,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: ImportMBHeadsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 58, - 1, - 42, - 34, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadMBHeadTemplate downloads the Excel import template. */ downloadMBHeadTemplate: { @@ -21655,50 +19744,7 @@ export const MBHeadServiceDefinition = { requestStream: false, responseType: DownloadMBHeadTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -21716,59 +19762,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: CreateMBSpinResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 34, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetMBSpin retrieves an MB Spin record by ID. */ getMBSpin: { @@ -21777,65 +19771,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: GetMBSpinResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 18, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - 47, - 123, - 109, - 98, - 115, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListMBSpins lists MB Spin records under a head. */ listMBSpins: { @@ -21844,56 +19780,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: ListMBSpinsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** UpdateMBSpin updates an existing MB Spin record. */ updateMBSpin: { @@ -21902,68 +19789,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: UpdateMBSpinResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 53, - 58, - 1, - 42, - 26, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - 47, - 123, - 109, - 98, - 115, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteMBSpin soft-deletes an MB Spin record. */ deleteMBSpin: { @@ -21972,65 +19798,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: DeleteMBSpinResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 42, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - 47, - 123, - 109, - 98, - 115, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ExportMBSpins exports MB Spin records to Excel. */ exportMBSpins: { @@ -22039,63 +19807,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: ExportMBSpinsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 48, - 18, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportMBSpins imports MB Spin records from Excel. */ importMBSpins: { @@ -22104,66 +19816,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: ImportMBSpinsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 58, - 1, - 42, - 34, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadMBSpinTemplate downloads the Excel import template. */ downloadMBSpinTemplate: { @@ -22172,65 +19825,7 @@ export const MBSpinServiceDefinition = { requestStream: false, responseType: DownloadMBSpinTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 50, - 18, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 109, - 98, - 45, - 104, - 101, - 97, - 100, - 115, - 47, - 123, - 109, - 98, - 104, - 95, - 105, - 100, - 125, - 47, - 115, - 112, - 105, - 110, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -22248,47 +19843,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListLookupMastersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 115, - ]), - ], - }, - }, + options: {}, }, /** ListLookupMasterColumns returns the selectable columns for one lookup master. */ listLookupMasterColumns: { @@ -22297,54 +19852,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListLookupMasterColumnsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 45, - 99, - 111, - 108, - 117, - 109, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** CreateLookupMaster adds a new master to the registry. */ createLookupMaster: { @@ -22353,50 +19861,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: CreateLookupMasterResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 115, - ]), - ], - }, - }, + options: {}, }, /** DeleteLookupMaster removes a master from the registry. */ deleteLookupMaster: { @@ -22405,57 +19870,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: DeleteLookupMasterResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 42, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 115, - 47, - 123, - 108, - 109, - 95, - 99, - 111, - 100, - 101, - 125, - ]), - ], - }, - }, + options: {}, }, /** CreateLookupMasterColumn adds a fillable column to a master. */ createLookupMasterColumn: { @@ -22464,57 +19879,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: CreateLookupMasterColumnResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 34, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 45, - 99, - 111, - 108, - 117, - 109, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** DeleteLookupMasterColumn removes a column from a master. */ deleteLookupMasterColumn: { @@ -22523,63 +19888,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: DeleteLookupMasterColumnResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 48, - 42, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 45, - 99, - 111, - 108, - 117, - 109, - 110, - 115, - 47, - 123, - 108, - 109, - 99, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** UpdateLookupMaster updates display_name, table_name, and/or is_active of an existing master. */ updateLookupMaster: { @@ -22588,60 +19897,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: UpdateLookupMasterResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 58, - 1, - 42, - 26, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 115, - 47, - 123, - 108, - 109, - 95, - 99, - 111, - 100, - 101, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListTableColumns introspects a registered PostgreSQL table's columns via information_schema. */ listTableColumns: { @@ -22650,60 +19906,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListTableColumnsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 18, - 43, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 45, - 116, - 97, - 98, - 108, - 101, - 45, - 99, - 111, - 108, - 117, - 109, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** ListMasterOptions returns combobox options (value+label) by querying the registered table. */ listMasterOptions: { @@ -22712,54 +19915,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ListMasterOptionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 45, - 111, - 112, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportLookupMasters exports all masters and columns to an Excel workbook. */ exportLookupMasters: { @@ -22768,54 +19924,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ExportLookupMastersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportLookupMasters imports masters and columns from an Excel workbook. */ importLookupMasters: { @@ -22824,57 +19933,7 @@ export const LookupMasterServiceDefinition = { requestStream: false, responseType: ImportLookupMastersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 34, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 109, - 97, - 115, - 116, - 101, - 114, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -22896,51 +19955,7 @@ export const YarnLookupFillServiceDefinition = { requestStream: false, responseType: GetLookupFillValuesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 102, - 105, - 110, - 97, - 110, - 99, - 101, - 47, - 108, - 111, - 111, - 107, - 117, - 112, - 45, - 102, - 105, - 108, - 108, - 45, - 118, - 97, - 108, - 117, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/audit.ts b/src/types/generated/iam/v1/audit.ts index 3ac30cb..2cc091a 100644 --- a/src/types/generated/iam/v1/audit.ts +++ b/src/types/generated/iam/v1/audit.ts @@ -2009,48 +2009,7 @@ export const AuditServiceDefinition = { requestStream: false, responseType: GetAuditLogResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 100, - 105, - 116, - 45, - 108, - 111, - 103, - 115, - 47, - 123, - 108, - 111, - 103, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListAuditLogs lists audit logs with search, filter, and pagination. */ listAuditLogs: { @@ -2059,39 +2018,7 @@ export const AuditServiceDefinition = { requestStream: false, responseType: ListAuditLogsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 24, - 18, - 22, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 100, - 105, - 116, - 45, - 108, - 111, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportAuditLogs exports audit logs to Excel for compliance. */ exportAuditLogs: { @@ -2100,46 +2027,7 @@ export const AuditServiceDefinition = { requestStream: false, responseType: ExportAuditLogsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 100, - 105, - 116, - 45, - 108, - 111, - 103, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** GetAuditSummary gets audit statistics for dashboard. */ getAuditSummary: { @@ -2148,47 +2036,7 @@ export const AuditServiceDefinition = { requestStream: false, responseType: GetAuditSummaryResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 100, - 105, - 116, - 45, - 108, - 111, - 103, - 115, - 47, - 115, - 117, - 109, - 109, - 97, - 114, - 121, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/auth.ts b/src/types/generated/iam/v1/auth.ts index 60236af..0231552 100644 --- a/src/types/generated/iam/v1/auth.ts +++ b/src/types/generated/iam/v1/auth.ts @@ -3357,42 +3357,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: LoginResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 27, - 58, - 1, - 42, - 34, - 22, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 108, - 111, - 103, - 105, - 110, - ]), - ], - }, - }, + options: {}, }, /** Logout invalidates the current session. */ logout: { @@ -3401,43 +3366,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: LogoutResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 58, - 1, - 42, - 34, - 23, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 108, - 111, - 103, - 111, - 117, - 116, - ]), - ], - }, - }, + options: {}, }, /** RefreshToken exchanges a refresh token for new access/refresh tokens. */ refreshToken: { @@ -3446,44 +3375,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: RefreshTokenResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 114, - 101, - 102, - 114, - 101, - 115, - 104, - ]), - ], - }, - }, + options: {}, }, /** ForgotPassword initiates password reset by sending OTP to email. */ forgotPassword: { @@ -3492,52 +3384,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ForgotPasswordResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 34, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 102, - 111, - 114, - 103, - 111, - 116, - 45, - 112, - 97, - 115, - 115, - 119, - 111, - 114, - 100, - ]), - ], - }, - }, + options: {}, }, /** VerifyResetOTP validates the OTP code and returns a reset token. */ verifyResetOTP: { @@ -3546,47 +3393,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: VerifyResetOTPResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 34, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 118, - 101, - 114, - 105, - 102, - 121, - 45, - 111, - 116, - 112, - ]), - ], - }, - }, + options: {}, }, /** ResetPassword sets a new password using a valid reset token. */ resetPassword: { @@ -3595,51 +3402,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ResetPasswordResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 58, - 1, - 42, - 34, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 114, - 101, - 115, - 101, - 116, - 45, - 112, - 97, - 115, - 115, - 119, - 111, - 114, - 100, - ]), - ], - }, - }, + options: {}, }, /** UpdatePassword changes password for authenticated user. */ updatePassword: { @@ -3648,52 +3411,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: UpdatePasswordResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 34, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 117, - 112, - 100, - 97, - 116, - 101, - 45, - 112, - 97, - 115, - 115, - 119, - 111, - 114, - 100, - ]), - ], - }, - }, + options: {}, }, /** * Enable2FA initiates two-factor authentication setup. @@ -3705,47 +3423,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: Enable2FAResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 34, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 50, - 102, - 97, - 47, - 101, - 110, - 97, - 98, - 108, - 101, - ]), - ], - }, - }, + options: {}, }, /** Verify2FA confirms 2FA setup with a TOTP code. */ verify2FA: { @@ -3754,47 +3432,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: Verify2FAResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 34, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 50, - 102, - 97, - 47, - 118, - 101, - 114, - 105, - 102, - 121, - ]), - ], - }, - }, + options: {}, }, /** Disable2FA removes two-factor authentication. */ disable2FA: { @@ -3803,48 +3441,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: Disable2FAResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 58, - 1, - 42, - 34, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 50, - 102, - 97, - 47, - 100, - 105, - 115, - 97, - 98, - 108, - 101, - ]), - ], - }, - }, + options: {}, }, /** GetCurrentUser returns the authenticated user's info. */ getCurrentUser: { @@ -3853,36 +3450,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: GetCurrentUserResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 21, - 18, - 19, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 109, - 101, - ]), - ], - }, - }, + options: {}, }, /** * SendEmailVerification sends a 6-digit verification code to the authenticated user's email. @@ -3894,60 +3462,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: SendEmailVerificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 58, - 1, - 42, - 34, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 115, - 101, - 110, - 100, - 45, - 101, - 109, - 97, - 105, - 108, - 45, - 118, - 101, - 114, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - ]), - ], - }, - }, + options: {}, }, /** VerifyEmail consumes a verification code and marks the authenticated user's email as verified. */ verifyEmail: { @@ -3956,49 +3471,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: VerifyEmailResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 58, - 1, - 42, - 34, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 118, - 101, - 114, - 105, - 102, - 121, - 45, - 101, - 109, - 97, - 105, - 108, - ]), - ], - }, - }, + options: {}, }, /** ResendEmailVerification re-sends the verification code. Rate-limited to 1 per minute per user. */ resendEmailVerification: { @@ -4007,62 +3480,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ResendEmailVerificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 47, - 58, - 1, - 42, - 34, - 42, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 114, - 101, - 115, - 101, - 110, - 100, - 45, - 101, - 109, - 97, - 105, - 108, - 45, - 118, - 101, - 114, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - ]), - ], - }, - }, + options: {}, }, /** * ValidateUnlockPassword verifies the authenticated user's password without changing it. @@ -4075,52 +3493,7 @@ export const AuthServiceDefinition = { requestStream: false, responseType: ValidateUnlockPasswordResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 58, - 1, - 42, - 34, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 97, - 117, - 116, - 104, - 47, - 118, - 97, - 108, - 105, - 100, - 97, - 116, - 101, - 45, - 117, - 110, - 108, - 111, - 99, - 107, - ]), - ], - }, - }, + options: {}, }, /** * VerifyPassword checks the user's password without changing any state. diff --git a/src/types/generated/iam/v1/cms.ts b/src/types/generated/iam/v1/cms.ts index 0ed2bf6..bc111c0 100644 --- a/src/types/generated/iam/v1/cms.ts +++ b/src/types/generated/iam/v1/cms.ts @@ -4861,41 +4861,7 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: CreateCMSPageResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 58, - 1, - 42, - 34, - 21, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 112, - 97, - 103, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetCMSPage retrieves a CMS page by ID. */ getCMSPage: { @@ -4904,48 +4870,7 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: GetCMSPageResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 18, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 112, - 97, - 103, - 101, - 115, - 47, - 123, - 112, - 97, - 103, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * GetCMSPageBySlug retrieves a CMS page by its URL slug. @@ -4957,50 +4882,7 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: GetCMSPageBySlugResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 112, - 97, - 103, - 101, - 115, - 47, - 115, - 108, - 117, - 103, - 47, - 123, - 115, - 108, - 117, - 103, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateCMSPage updates an existing CMS page. @@ -5012,51 +4894,7 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: UpdateCMSPageResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 58, - 1, - 42, - 26, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 112, - 97, - 103, - 101, - 115, - 47, - 123, - 112, - 97, - 103, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteCMSPage soft deletes a CMS page. */ deleteCMSPage: { @@ -5065,48 +4903,7 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: DeleteCMSPageResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 42, - 31, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 112, - 97, - 103, - 101, - 115, - 47, - 123, - 112, - 97, - 103, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListCMSPages lists CMS pages with search, filter, and pagination. */ listCMSPages: { @@ -5115,38 +4912,7 @@ export const CMSPageServiceDefinition = { requestStream: false, responseType: ListCMSPagesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 23, - 18, - 21, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 112, - 97, - 103, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -5164,44 +4930,7 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: CreateCMSSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetCMSSection retrieves a CMS section by ID. */ getCMSSection: { @@ -5210,54 +4939,7 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: GetCMSSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 18, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateCMSSection updates an existing CMS section. @@ -5269,57 +4951,7 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: UpdateCMSSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 42, - 58, - 1, - 42, - 26, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteCMSSection soft deletes a CMS section. */ deleteCMSSection: { @@ -5328,54 +4960,7 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: DeleteCMSSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 42, - 37, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListCMSSections lists CMS sections with search, filter, and pagination. */ listCMSSections: { @@ -5384,41 +4969,7 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: ListCMSSectionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** * GetPublicLandingContent fetches all published landing page content in one call. @@ -5431,39 +4982,7 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: GetPublicLandingContentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 24, - 18, - 22, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 112, - 117, - 98, - 108, - 105, - 99, - 47, - 108, - 97, - 110, - 100, - 105, - 110, - 103, - ]), - ], - }, - }, + options: {}, }, /** * UploadCMSImage uploads an image to MinIO storage for use in CMS sections. @@ -5475,42 +4994,7 @@ export const CMSSectionServiceDefinition = { requestStream: false, responseType: UploadCMSImageResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 27, - 58, - 1, - 42, - 34, - 22, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 117, - 112, - 108, - 111, - 97, - 100, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -5531,55 +5015,7 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: GetCMSSettingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 40, - 18, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 116, - 116, - 105, - 110, - 103, - 115, - 47, - 123, - 115, - 101, - 116, - 116, - 105, - 110, - 103, - 95, - 107, - 101, - 121, - 125, - ]), - ], - }, - }, + options: {}, }, /** UpdateCMSSetting updates a CMS setting value. */ updateCMSSetting: { @@ -5588,58 +5024,7 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: UpdateCMSSettingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 43, - 58, - 1, - 42, - 26, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 116, - 116, - 105, - 110, - 103, - 115, - 47, - 123, - 115, - 101, - 116, - 116, - 105, - 110, - 103, - 95, - 107, - 101, - 121, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListCMSSettings lists CMS settings, optionally filtered by group. */ listCMSSettings: { @@ -5648,41 +5033,7 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: ListCMSSettingsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 116, - 116, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** BulkUpdateCMSSettings updates multiple settings at once. */ bulkUpdateCMSSettings: { @@ -5691,44 +5042,7 @@ export const CMSSettingServiceDefinition = { requestStream: false, responseType: BulkUpdateCMSSettingsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 26, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 109, - 115, - 47, - 115, - 101, - 116, - 116, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/company_mapping.ts b/src/types/generated/iam/v1/company_mapping.ts index 95f2d2d..105a1c1 100644 --- a/src/types/generated/iam/v1/company_mapping.ts +++ b/src/types/generated/iam/v1/company_mapping.ts @@ -1651,48 +1651,7 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: CreateCompanyMappingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 58, - 1, - 42, - 34, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetCompanyMapping fetches a mapping by ID. */ getCompanyMapping: { @@ -1701,66 +1660,7 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: GetCompanyMappingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 18, - 49, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - 47, - 123, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 95, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** UpdateCompanyMapping updates an existing mapping. Code is immutable. */ updateCompanyMapping: { @@ -1769,69 +1669,7 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: UpdateCompanyMappingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 54, - 58, - 1, - 42, - 26, - 49, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - 47, - 123, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 95, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteCompanyMapping soft-deletes a mapping. */ deleteCompanyMapping: { @@ -1840,66 +1678,7 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: DeleteCompanyMappingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 42, - 49, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - 47, - 123, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 95, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListCompanyMappings lists mappings with search, filter, and pagination. */ listCompanyMappings: { @@ -1908,45 +1687,7 @@ export const CompanyMappingServiceDefinition = { requestStream: false, responseType: ListCompanyMappingsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 18, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/employee_group.ts b/src/types/generated/iam/v1/employee_group.ts index c265de8..6b11ca1 100644 --- a/src/types/generated/iam/v1/employee_group.ts +++ b/src/types/generated/iam/v1/employee_group.ts @@ -1773,47 +1773,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: CreateEmployeeGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 34, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetEmployeeGroup retrieves an employee group by ID. */ getEmployeeGroup: { @@ -1822,64 +1782,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: GetEmployeeGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 18, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 103, - 114, - 111, - 117, - 112, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateEmployeeGroup updates an existing employee group. @@ -1891,67 +1794,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: UpdateEmployeeGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 52, - 58, - 1, - 42, - 26, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 103, - 114, - 111, - 117, - 112, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteEmployeeGroup soft deletes an employee group. */ deleteEmployeeGroup: { @@ -1960,64 +1803,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: DeleteEmployeeGroupResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 42, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 103, - 114, - 111, - 117, - 112, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListEmployeeGroups lists employee groups with search, filter, and pagination. */ listEmployeeGroups: { @@ -2026,44 +1812,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: ListEmployeeGroupsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportEmployeeGroups exports employee groups to Excel file. */ exportEmployeeGroups: { @@ -2072,51 +1821,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: ExportEmployeeGroupsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportEmployeeGroups imports employee groups from Excel file. */ importEmployeeGroups: { @@ -2125,54 +1830,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: ImportEmployeeGroupsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 34, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadEmployeeGroupTemplate downloads the Excel import template. */ downloadEmployeeGroupTemplate: { @@ -2181,53 +1839,7 @@ export const EmployeeGroupServiceDefinition = { requestStream: false, responseType: DownloadEmployeeGroupTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 18, - 36, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 103, - 114, - 111, - 117, - 112, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/employee_level.ts b/src/types/generated/iam/v1/employee_level.ts index d8d73f5..7d52f17 100644 --- a/src/types/generated/iam/v1/employee_level.ts +++ b/src/types/generated/iam/v1/employee_level.ts @@ -2930,47 +2930,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: CreateEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 34, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetEmployeeLevel retrieves an employee level by ID. */ getEmployeeLevel: { @@ -2979,64 +2939,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: GetEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 18, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * UpdateEmployeeLevel updates an existing employee level. @@ -3048,67 +2951,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: UpdateEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 52, - 58, - 1, - 42, - 26, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** DeleteEmployeeLevel soft deletes an employee level. */ deleteEmployeeLevel: { @@ -3117,64 +2960,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: DeleteEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 42, - 47, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListEmployeeLevels lists employee levels with search, filter, and pagination. */ listEmployeeLevels: { @@ -3183,44 +2969,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ListEmployeeLevelsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - ]), - ], - }, - }, + options: {}, }, /** ExportEmployeeLevels exports employee levels to Excel file. */ exportEmployeeLevels: { @@ -3229,51 +2978,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ExportEmployeeLevelsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportEmployeeLevels imports employee levels from Excel file. */ importEmployeeLevels: { @@ -3282,54 +2987,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ImportEmployeeLevelsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 34, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadEmployeeLevelTemplate downloads the Excel import template. */ downloadEmployeeLevelTemplate: { @@ -3338,53 +2996,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: DownloadEmployeeLevelTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 18, - 36, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** SubmitEmployeeLevel transitions workflow from DRAFT → SUBMITTED. */ submitEmployeeLevel: { @@ -3393,74 +3005,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: SubmitEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 59, - 58, - 1, - 42, - 34, - 54, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 95, - 105, - 100, - 125, - 47, - 115, - 117, - 98, - 109, - 105, - 116, - ]), - ], - }, - }, + options: {}, }, /** ApproveEmployeeLevel transitions workflow from SUBMITTED → APPROVED. */ approveEmployeeLevel: { @@ -3469,75 +3014,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ApproveEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 60, - 58, - 1, - 42, - 34, - 55, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 95, - 105, - 100, - 125, - 47, - 97, - 112, - 112, - 114, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** ReleaseEmployeeLevel transitions workflow from APPROVED → RELEASED. */ releaseEmployeeLevel: { @@ -3546,75 +3023,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: ReleaseEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 60, - 58, - 1, - 42, - 34, - 55, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 108, - 101, - 97, - 115, - 101, - ]), - ], - }, - }, + options: {}, }, /** BypassReleaseEmployeeLevel transitions workflow directly to RELEASED from any state. */ bypassReleaseEmployeeLevel: { @@ -3623,82 +3032,7 @@ export const EmployeeLevelServiceDefinition = { requestStream: false, responseType: BypassReleaseEmployeeLevelResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 67, - 58, - 1, - 42, - 34, - 62, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 45, - 108, - 101, - 118, - 101, - 108, - 115, - 47, - 123, - 101, - 109, - 112, - 108, - 111, - 121, - 101, - 101, - 95, - 108, - 101, - 118, - 101, - 108, - 95, - 105, - 100, - 125, - 47, - 98, - 121, - 112, - 97, - 115, - 115, - 45, - 114, - 101, - 108, - 101, - 97, - 115, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/menu.ts b/src/types/generated/iam/v1/menu.ts index 56a0d1b..bee8acf 100644 --- a/src/types/generated/iam/v1/menu.ts +++ b/src/types/generated/iam/v1/menu.ts @@ -3490,37 +3490,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: CreateMenuResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 22, - 58, - 1, - 42, - 34, - 17, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - ]), - ], - }, - }, + options: {}, }, getMenu: { name: "GetMenu", @@ -3528,44 +3498,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetMenuResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 123, - 109, - 101, - 110, - 117, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateMenu: { name: "UpdateMenu", @@ -3573,47 +3506,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: UpdateMenuResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 26, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 123, - 109, - 101, - 110, - 117, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deleteMenu: { name: "DeleteMenu", @@ -3621,44 +3514,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: DeleteMenuResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 42, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 123, - 109, - 101, - 110, - 117, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listMenus: { name: "ListMenus", @@ -3666,13 +3522,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ListMenusResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([19, 18, 17, 47, 97, 112, 105, 47, 118, 49, 47, 105, 97, 109, 47, 109, 101, 110, 117, 115]), - ], - }, - }, + options: {}, }, exportMenus: { name: "ExportMenus", @@ -3680,41 +3530,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ExportMenusResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importMenus: { name: "ImportMenus", @@ -3722,44 +3538,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ImportMenusResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadMenuTemplate: { name: "DownloadMenuTemplate", @@ -3767,43 +3546,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: DownloadMenuTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 18, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** Get menu tree for current authenticated user (filtered by permissions) */ getMenuTree: { @@ -3812,39 +3555,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetMenuTreeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 24, - 18, - 22, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 116, - 114, - 101, - 101, - ]), - ], - }, - }, + options: {}, }, /** Get full menu tree for admin management (not filtered by permissions) */ getFullMenuTree: { @@ -3853,44 +3564,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetFullMenuTreeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 116, - 114, - 101, - 101, - 47, - 102, - 117, - 108, - 108, - ]), - ], - }, - }, + options: {}, }, /** Menu-Permission assignment */ assignMenuPermissions: { @@ -3899,59 +3573,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: AssignMenuPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 34, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 123, - 109, - 101, - 110, - 117, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, removeMenuPermissions: { name: "RemoveMenuPermissions", @@ -3959,66 +3581,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: RemoveMenuPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 58, - 1, - 42, - 34, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 123, - 109, - 101, - 110, - 117, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 114, - 101, - 109, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, getMenuPermissions: { name: "GetMenuPermissions", @@ -4026,56 +3589,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: GetMenuPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 123, - 109, - 101, - 110, - 117, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** Reorder menus within same parent */ reorderMenus: { @@ -4084,45 +3598,7 @@ export const MenuServiceDefinition = { requestStream: false, responseType: ReorderMenusResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 58, - 1, - 42, - 34, - 25, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 109, - 101, - 110, - 117, - 115, - 47, - 114, - 101, - 111, - 114, - 100, - 101, - 114, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/notification.ts b/src/types/generated/iam/v1/notification.ts index 2df4593..4c3e6d8 100644 --- a/src/types/generated/iam/v1/notification.ts +++ b/src/types/generated/iam/v1/notification.ts @@ -2880,53 +2880,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: RequestNotificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 58, - 1, - 42, - 34, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 114, - 101, - 113, - 117, - 101, - 115, - 116, - ]), - ], - }, - }, + options: {}, }, /** * CreateNotification creates a new notification for a user. Used by other @@ -2938,45 +2892,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: CreateNotificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 58, - 1, - 42, - 34, - 25, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetNotification returns a single notification owned by the caller. */ getNotification: { @@ -2985,60 +2901,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: GetNotificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 18, - 43, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListNotifications lists notifications for the authenticated user. */ listNotifications: { @@ -3047,42 +2910,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: ListNotificationsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 27, - 18, - 25, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetUnreadCount returns the count of unread notifications for the caller. */ getUnreadCount: { @@ -3091,55 +2919,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: GetUnreadCountResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 40, - 18, - 38, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 117, - 110, - 114, - 101, - 97, - 100, - 45, - 99, - 111, - 117, - 110, - 116, - ]), - ], - }, - }, + options: {}, }, /** MarkAsRead marks a single notification as read. */ markAsRead: { @@ -3148,68 +2928,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: MarkAsReadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 53, - 58, - 1, - 42, - 34, - 48, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 97, - 100, - ]), - ], - }, - }, + options: {}, }, /** MarkAllAsRead marks all unread notifications as read. */ markAllAsRead: { @@ -3218,54 +2937,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: MarkAllAsReadResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 34, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 114, - 101, - 97, - 100, - 45, - 97, - 108, - 108, - ]), - ], - }, - }, + options: {}, }, /** ArchiveNotification archives a notification (kept until expires_at). */ archiveNotification: { @@ -3274,71 +2946,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: ArchiveNotificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 56, - 58, - 1, - 42, - 34, - 51, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - 47, - 97, - 114, - 99, - 104, - 105, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** DeleteNotification hard-deletes a notification owned by the caller. */ deleteNotification: { @@ -3347,60 +2955,7 @@ export const NotificationServiceDefinition = { requestStream: false, responseType: DeleteNotificationResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 42, - 43, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 110, - 111, - 116, - 105, - 102, - 105, - 99, - 97, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** * StreamNotifications opens a server-streaming subscription for new diff --git a/src/types/generated/iam/v1/organization.ts b/src/types/generated/iam/v1/organization.ts index 29c8726..13f9ebf 100644 --- a/src/types/generated/iam/v1/organization.ts +++ b/src/types/generated/iam/v1/organization.ts @@ -7818,41 +7818,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: CreateCompanyResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 58, - 1, - 42, - 34, - 21, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, getCompany: { name: "GetCompany", @@ -7860,51 +7826,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: GetCompanyResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - 47, - 123, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateCompany: { name: "UpdateCompany", @@ -7912,54 +7834,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: UpdateCompanyResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 26, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - 47, - 123, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deleteCompany: { name: "DeleteCompany", @@ -7967,51 +7842,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: DeleteCompanyResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 42, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - 47, - 123, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listCompanies: { name: "ListCompanies", @@ -8019,38 +7850,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: ListCompaniesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 23, - 18, - 21, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, exportCompanies: { name: "ExportCompanies", @@ -8058,45 +7858,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: ExportCompaniesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 18, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importCompanies: { name: "ImportCompanies", @@ -8104,48 +7866,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: ImportCompaniesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 58, - 1, - 42, - 34, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadCompanyTemplate: { name: "DownloadCompanyTemplate", @@ -8153,47 +7874,7 @@ export const CompanyServiceDefinition = { requestStream: false, responseType: DownloadCompanyTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 105, - 101, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -8210,41 +7891,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: CreateDivisionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 58, - 1, - 42, - 34, - 21, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, getDivision: { name: "GetDivision", @@ -8252,52 +7899,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: GetDivisionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 18, - 35, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - 47, - 123, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateDivision: { name: "UpdateDivision", @@ -8305,55 +7907,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: UpdateDivisionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 40, - 58, - 1, - 42, - 26, - 35, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - 47, - 123, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deleteDivision: { name: "DeleteDivision", @@ -8361,52 +7915,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: DeleteDivisionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 37, - 42, - 35, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - 47, - 123, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listDivisions: { name: "ListDivisions", @@ -8414,38 +7923,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: ListDivisionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 23, - 18, - 21, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, exportDivisions: { name: "ExportDivisions", @@ -8453,45 +7931,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: ExportDivisionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 18, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importDivisions: { name: "ImportDivisions", @@ -8499,48 +7939,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: ImportDivisionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 33, - 58, - 1, - 42, - 34, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadDivisionTemplate: { name: "DownloadDivisionTemplate", @@ -8548,47 +7947,7 @@ export const DivisionServiceDefinition = { requestStream: false, responseType: DownloadDivisionTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 105, - 118, - 105, - 115, - 105, - 111, - 110, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -8605,43 +7964,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: CreateDepartmentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 58, - 1, - 42, - 34, - 23, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, getDepartment: { name: "GetDepartment", @@ -8649,56 +7972,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: GetDepartmentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateDepartment: { name: "UpdateDepartment", @@ -8706,59 +7980,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: UpdateDepartmentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 26, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deleteDepartment: { name: "DeleteDepartment", @@ -8766,56 +7988,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: DeleteDepartmentResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 42, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - 47, - 123, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listDepartments: { name: "ListDepartments", @@ -8823,40 +7996,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: ListDepartmentsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 25, - 18, - 23, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - ]), - ], - }, - }, + options: {}, }, exportDepartments: { name: "ExportDepartments", @@ -8864,47 +8004,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: ExportDepartmentsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importDepartments: { name: "ImportDepartments", @@ -8912,50 +8012,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: ImportDepartmentsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadDepartmentTemplate: { name: "DownloadDepartmentTemplate", @@ -8963,49 +8020,7 @@ export const DepartmentServiceDefinition = { requestStream: false, responseType: DownloadDepartmentTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 18, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 100, - 101, - 112, - 97, - 114, - 116, - 109, - 101, - 110, - 116, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -9022,40 +8037,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: CreateSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 25, - 58, - 1, - 42, - 34, - 20, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, getSection: { name: "GetSection", @@ -9063,50 +8045,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: GetSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 18, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateSection: { name: "UpdateSection", @@ -9114,53 +8053,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: UpdateSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 58, - 1, - 42, - 26, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deleteSection: { name: "DeleteSection", @@ -9168,50 +8061,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: DeleteSectionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 42, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 123, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listSections: { name: "ListSections", @@ -9219,37 +8069,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: ListSectionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 22, - 18, - 20, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, exportSections: { name: "ExportSections", @@ -9257,44 +8077,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: ExportSectionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importSections: { name: "ImportSections", @@ -9302,47 +8085,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: ImportSectionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 34, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadSectionTemplate: { name: "DownloadSectionTemplate", @@ -9350,46 +8093,7 @@ export const SectionServiceDefinition = { requestStream: false, responseType: DownloadSectionTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 99, - 116, - 105, - 111, - 110, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -9407,46 +8111,7 @@ export const OrganizationServiceDefinition = { requestStream: false, responseType: GetOrganizationTreeResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 31, - 18, - 29, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 111, - 114, - 103, - 97, - 110, - 105, - 122, - 97, - 116, - 105, - 111, - 110, - 47, - 116, - 114, - 101, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/role.ts b/src/types/generated/iam/v1/role.ts index 4297643..8187df8 100644 --- a/src/types/generated/iam/v1/role.ts +++ b/src/types/generated/iam/v1/role.ts @@ -4815,37 +4815,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: CreateRoleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 22, - 58, - 1, - 42, - 34, - 17, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, getRole: { name: "GetRole", @@ -4853,44 +4823,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: GetRoleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 123, - 114, - 111, - 108, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updateRole: { name: "UpdateRole", @@ -4898,47 +4831,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: UpdateRoleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 26, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 123, - 114, - 111, - 108, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deleteRole: { name: "DeleteRole", @@ -4946,44 +4839,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: DeleteRoleResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 42, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 123, - 114, - 111, - 108, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listRoles: { name: "ListRoles", @@ -4991,13 +4847,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: ListRolesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([19, 18, 17, 47, 97, 112, 105, 47, 118, 49, 47, 105, 97, 109, 47, 114, 111, 108, 101, 115]), - ], - }, - }, + options: {}, }, exportRoles: { name: "ExportRoles", @@ -5005,41 +4855,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: ExportRolesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importRoles: { name: "ImportRoles", @@ -5047,44 +4863,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: ImportRolesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadRoleTemplate: { name: "DownloadRoleTemplate", @@ -5092,43 +4871,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: DownloadRoleTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 18, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** Role-Permission assignment */ assignRolePermissions: { @@ -5137,59 +4880,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: AssignRolePermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 34, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 123, - 114, - 111, - 108, - 101, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, removeRolePermissions: { name: "RemoveRolePermissions", @@ -5197,66 +4888,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: RemoveRolePermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 58, - 1, - 42, - 34, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 123, - 114, - 111, - 108, - 101, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 114, - 101, - 109, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, getRolePermissions: { name: "GetRolePermissions", @@ -5264,56 +4896,7 @@ export const RoleServiceDefinition = { requestStream: false, responseType: GetRolePermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 123, - 114, - 111, - 108, - 101, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -5330,43 +4913,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: CreatePermissionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 58, - 1, - 42, - 34, - 23, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, getPermission: { name: "GetPermission", @@ -5374,56 +4921,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: GetPermissionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 18, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 123, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, updatePermission: { name: "UpdatePermission", @@ -5431,59 +4929,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: UpdatePermissionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 26, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 123, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, deletePermission: { name: "DeletePermission", @@ -5491,56 +4937,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: DeletePermissionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 41, - 42, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 123, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listPermissions: { name: "ListPermissions", @@ -5548,40 +4945,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: ListPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 25, - 18, - 23, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, exportPermissions: { name: "ExportPermissions", @@ -5589,47 +4953,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: ExportPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, importPermissions: { name: "ImportPermissions", @@ -5637,50 +4961,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: ImportPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, downloadPermissionTemplate: { name: "DownloadPermissionTemplate", @@ -5688,49 +4969,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: DownloadPermissionTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 34, - 18, - 32, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** Get permissions grouped by service/module */ getPermissionsByService: { @@ -5739,51 +4978,7 @@ export const PermissionServiceDefinition = { requestStream: false, responseType: GetPermissionsByServiceResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 98, - 121, - 45, - 115, - 101, - 114, - 118, - 105, - 99, - 101, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/session.ts b/src/types/generated/iam/v1/session.ts index 70b22c6..de016c9 100644 --- a/src/types/generated/iam/v1/session.ts +++ b/src/types/generated/iam/v1/session.ts @@ -839,45 +839,7 @@ export const SessionServiceDefinition = { requestStream: false, responseType: GetCurrentSessionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 30, - 18, - 28, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 99, - 117, - 114, - 114, - 101, - 110, - 116, - ]), - ], - }, - }, + options: {}, }, /** RevokeSession force logs out the user (admin can revoke others). */ revokeSession: { @@ -886,60 +848,7 @@ export const SessionServiceDefinition = { requestStream: false, responseType: RevokeSessionResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 58, - 1, - 42, - 34, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 123, - 115, - 101, - 115, - 115, - 105, - 111, - 110, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 118, - 111, - 107, - 101, - ]), - ], - }, - }, + options: {}, }, /** ListActiveSessions lists all currently active sessions (admin only). */ listActiveSessions: { @@ -948,37 +857,7 @@ export const SessionServiceDefinition = { requestStream: false, responseType: ListActiveSessionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 22, - 18, - 20, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 115, - 101, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/user.ts b/src/types/generated/iam/v1/user.ts index 131ffb8..54aca5c 100644 --- a/src/types/generated/iam/v1/user.ts +++ b/src/types/generated/iam/v1/user.ts @@ -6404,37 +6404,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: CreateUserResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 22, - 58, - 1, - 42, - 34, - 17, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - ]), - ], - }, - }, + options: {}, }, /** GetUser retrieves a user by ID. */ getUser: { @@ -6443,44 +6413,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 18, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** GetUserDetail retrieves user with full employee details. */ getUserDetail: { @@ -6489,51 +6422,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserDetailResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 100, - 101, - 116, - 97, - 105, - 108, - ]), - ], - }, - }, + options: {}, }, /** UpdateUser updates user credentials. */ updateUser: { @@ -6542,47 +6431,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: UpdateUserResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 58, - 1, - 42, - 26, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** UpdateUserDetail updates employee details. */ updateUserDetail: { @@ -6591,54 +6440,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: UpdateUserDetailResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 26, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 100, - 101, - 116, - 97, - 105, - 108, - ]), - ], - }, - }, + options: {}, }, /** DeleteUser soft deletes a user. */ deleteUser: { @@ -6647,44 +6449,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: DeleteUserResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 42, - 27, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** ListUsers lists users with search, filter, sort, and pagination. */ listUsers: { @@ -6693,13 +6458,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: ListUsersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([19, 18, 17, 47, 97, 112, 105, 47, 118, 49, 47, 105, 97, 109, 47, 117, 115, 101, 114, 115]), - ], - }, - }, + options: {}, }, /** ExportUsers exports users to Excel file. */ exportUsers: { @@ -6708,41 +6467,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: ExportUsersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 26, - 18, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 101, - 120, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** ImportUsers imports users from Excel file. */ importUsers: { @@ -6751,44 +6476,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: ImportUsersResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 29, - 58, - 1, - 42, - 34, - 24, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 105, - 109, - 112, - 111, - 114, - 116, - ]), - ], - }, - }, + options: {}, }, /** DownloadTemplate downloads the Excel import template. */ downloadTemplate: { @@ -6797,43 +6485,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: DownloadTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 28, - 18, - 26, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, /** AssignUserRoles assigns roles to a user. */ assignUserRoles: { @@ -6842,53 +6494,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: AssignUserRolesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 38, - 58, - 1, - 42, - 34, - 33, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 114, - 111, - 108, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** RemoveUserRoles removes roles from a user. */ removeUserRoles: { @@ -6897,60 +6503,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: RemoveUserRolesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 45, - 58, - 1, - 42, - 34, - 40, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 114, - 111, - 108, - 101, - 115, - 47, - 114, - 101, - 109, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** AssignUserPermissions assigns direct permissions to a user. */ assignUserPermissions: { @@ -6959,59 +6512,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: AssignUserPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 44, - 58, - 1, - 42, - 34, - 39, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - ]), - ], - }, - }, + options: {}, }, /** RemoveUserPermissions removes direct permissions from a user. */ removeUserPermissions: { @@ -7020,66 +6521,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: RemoveUserPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 51, - 58, - 1, - 42, - 34, - 46, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 112, - 101, - 114, - 109, - 105, - 115, - 115, - 105, - 111, - 110, - 115, - 47, - 114, - 101, - 109, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** GetUserRolesAndPermissions gets all roles and permissions for a user. */ getUserRolesAndPermissions: { @@ -7088,51 +6530,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserRolesAndPermissionsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 36, - 18, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 97, - 99, - 99, - 101, - 115, - 115, - ]), - ], - }, - }, + options: {}, }, /** * UploadProfilePicture uploads or replaces a user's profile picture. @@ -7144,54 +6542,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: UploadProfilePictureResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 39, - 58, - 1, - 42, - 34, - 34, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 97, - 118, - 97, - 116, - 97, - 114, - ]), - ], - }, - }, + options: {}, }, /** AssignUserCompanyMapping assigns a company mapping to a user. */ assignUserCompanyMapping: { @@ -7200,64 +6551,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: AssignUserCompanyMappingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 58, - 1, - 42, - 34, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, /** RemoveUserCompanyMapping removes a company mapping from a user. */ removeUserCompanyMapping: { @@ -7266,71 +6560,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: RemoveUserCompanyMappingResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 56, - 58, - 1, - 42, - 34, - 51, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - 47, - 114, - 101, - 109, - 111, - 118, - 101, - ]), - ], - }, - }, + options: {}, }, /** GetUserCompanyMappings lists all company mappings assigned to a user. */ getUserCompanyMappings: { @@ -7339,61 +6569,7 @@ export const UserServiceDefinition = { requestStream: false, responseType: GetUserCompanyMappingsResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 18, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 117, - 115, - 101, - 114, - 115, - 47, - 123, - 117, - 115, - 101, - 114, - 95, - 105, - 100, - 125, - 47, - 99, - 111, - 109, - 112, - 97, - 110, - 121, - 45, - 109, - 97, - 112, - 112, - 105, - 110, - 103, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; diff --git a/src/types/generated/iam/v1/workflow.ts b/src/types/generated/iam/v1/workflow.ts index 0c36a1f..c3b5a61 100644 --- a/src/types/generated/iam/v1/workflow.ts +++ b/src/types/generated/iam/v1/workflow.ts @@ -3440,50 +3440,7 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: CreateWorkflowTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, getWorkflowTemplate: { name: "GetWorkflowTemplate", @@ -3491,61 +3448,7 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: GetWorkflowTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 18, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 115, - 47, - 123, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** Update creates a new version row; the prior version remains in history. */ updateWorkflowTemplate: { @@ -3554,64 +3457,7 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: UpdateWorkflowTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 49, - 58, - 1, - 42, - 26, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 115, - 47, - 123, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, /** Activate marks this version active and deactivates all other versions of the same kind. */ activateWorkflowTemplate: { @@ -3620,73 +3466,7 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: ActivateWorkflowTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 58, - 58, - 1, - 42, - 34, - 53, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 115, - 47, - 123, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 95, - 105, - 100, - 125, - 47, - 97, - 99, - 116, - 105, - 118, - 97, - 116, - 101, - ]), - ], - }, - }, + options: {}, }, deleteWorkflowTemplate: { name: "DeleteWorkflowTemplate", @@ -3694,61 +3474,7 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: DeleteWorkflowTemplateResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 42, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 115, - 47, - 123, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listWorkflowTemplates: { name: "ListWorkflowTemplates", @@ -3756,47 +3482,7 @@ export const WorkflowTemplateServiceDefinition = { requestStream: false, responseType: ListWorkflowTemplatesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 116, - 101, - 109, - 112, - 108, - 97, - 116, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, }, } as const; @@ -3817,50 +3503,7 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: StartWorkflowInstanceResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 35, - 58, - 1, - 42, - 34, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, getWorkflowInstance: { name: "GetWorkflowInstance", @@ -3868,61 +3511,7 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: GetWorkflowInstanceResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 46, - 18, - 44, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 115, - 47, - 123, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 95, - 105, - 100, - 125, - ]), - ], - }, - }, + options: {}, }, listWorkflowInstances: { name: "ListWorkflowInstances", @@ -3930,47 +3519,7 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: ListWorkflowInstancesResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 32, - 18, - 30, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 115, - ]), - ], - }, - }, + options: {}, }, /** Advance approves the current step. If it was the last step, status becomes LOCKED. */ advanceWorkflowInstance: { @@ -3979,72 +3528,7 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: AdvanceWorkflowInstanceResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 57, - 58, - 1, - 42, - 34, - 52, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 115, - 47, - 123, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 95, - 105, - 100, - 125, - 47, - 97, - 100, - 118, - 97, - 110, - 99, - 101, - ]), - ], - }, - }, + options: {}, }, /** Reject sets status REJECTED with the supplied comment. */ rejectWorkflowInstance: { @@ -4053,71 +3537,7 @@ export const WorkflowInstanceServiceDefinition = { requestStream: false, responseType: RejectWorkflowInstanceResponse, responseStream: false, - options: { - _unknownFields: { - 578365826: [ - new Uint8Array([ - 56, - 58, - 1, - 42, - 34, - 51, - 47, - 97, - 112, - 105, - 47, - 118, - 49, - 47, - 105, - 97, - 109, - 47, - 119, - 111, - 114, - 107, - 102, - 108, - 111, - 119, - 45, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 115, - 47, - 123, - 105, - 110, - 115, - 116, - 97, - 110, - 99, - 101, - 95, - 105, - 100, - 125, - 47, - 114, - 101, - 106, - 101, - 99, - 116, - ]), - ], - }, - }, + options: {}, }, }, } as const; From 9e3fe6c273d589acbea810724eb05cecd427d546 Mon Sep 17 00:00:00 2001 From: ilhom Date: Wed, 1 Jul 2026 10:34:55 +0700 Subject: [PATCH 04/12] feat(fe): permission form requires description + page selector; thread menu_id (Tasks 8, 11) Task 8: ListPermissionsParams gains menuId; BFF list route forwards menu_id. Task 11: description now required (zod min 1) with helper copy; new searchable MenuCombobox (Popover+Command, no raw UUID, 'Global / none' option) sets menu_id on create + update. tsc clean; eslint 0 errors. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/app/api/v1/iam/permissions/route.ts | 1 + .../permissions/permission-form-dialog.tsx | 40 ++++++- .../settings/rbac/menu-combobox.tsx | 107 ++++++++++++++++++ src/types/iam/role.ts | 1 + 4 files changed, 146 insertions(+), 3 deletions(-) create mode 100644 src/components/settings/rbac/menu-combobox.tsx diff --git a/src/app/api/v1/iam/permissions/route.ts b/src/app/api/v1/iam/permissions/route.ts index e82d339..84be892 100644 --- a/src/app/api/v1/iam/permissions/route.ts +++ b/src/app/api/v1/iam/permissions/route.ts @@ -19,6 +19,7 @@ export async function GET(request: NextRequest) { serviceName: searchParams.get("serviceName") || searchParams.get("service_name") || "", moduleName: searchParams.get("moduleName") || searchParams.get("module_name") || "", actionType: searchParams.get("actionType") || searchParams.get("action_type") || "", + menuId: searchParams.get("menuId") || searchParams.get("menu_id") || "", sortBy: searchParams.get("sortBy") || searchParams.get("sort_by") || "", sortOrder: searchParams.get("sortOrder") || searchParams.get("sort_order") || "", }, diff --git a/src/components/settings/permissions/permission-form-dialog.tsx b/src/components/settings/permissions/permission-form-dialog.tsx index 2529fdb..270fd51 100644 --- a/src/components/settings/permissions/permission-form-dialog.tsx +++ b/src/components/settings/permissions/permission-form-dialog.tsx @@ -37,6 +37,7 @@ import { import type { PermissionDetail } from "@/types/iam/role" import { useCreatePermission, useUpdatePermission } from "@/hooks/iam/use-permissions" +import { MenuCombobox } from "@/components/settings/rbac/menu-combobox" const ACTION_TYPES = ["view", "create", "update", "delete", "export", "import"] as const @@ -50,10 +51,11 @@ const permissionFormSchema = z.object({ "Format: service.module.entity.action (lowercase, dots)" ), permissionName: z.string().min(1, "Name is required").max(100, "Maximum 100 characters"), - description: z.string().max(500, "Maximum 500 characters"), + description: z.string().min(1, "Description is required").max(500, "Maximum 500 characters"), serviceName: z.string().min(1, "Service is required").max(50, "Maximum 50 characters"), moduleName: z.string().min(1, "Module is required").max(50, "Maximum 50 characters"), actionType: z.enum(ACTION_TYPES, { message: "Action type is required" }), + menuId: z.string(), isActive: z.boolean(), }) @@ -79,6 +81,7 @@ export function PermissionFormDialog({ open, onOpenChange, permission }: Permiss serviceName: "", moduleName: "", actionType: "view", + menuId: "", isActive: true, }, }) @@ -93,6 +96,7 @@ export function PermissionFormDialog({ open, onOpenChange, permission }: Permiss serviceName: permission.serviceName || "", moduleName: permission.moduleName || "", actionType: (permission.actionType as typeof ACTION_TYPES[number]) || "view", + menuId: permission.menuId || "", isActive: permission.isActive ?? true, }) } else { @@ -103,6 +107,7 @@ export function PermissionFormDialog({ open, onOpenChange, permission }: Permiss serviceName: "", moduleName: "", actionType: "view", + menuId: "", isActive: true, }) } @@ -139,6 +144,7 @@ export function PermissionFormDialog({ open, onOpenChange, permission }: Permiss permissionName: values.permissionName, description: values.description || "", isActive: values.isActive, + menuId: values.menuId, }, }) } else { @@ -149,6 +155,7 @@ export function PermissionFormDialog({ open, onOpenChange, permission }: Permiss serviceName: values.serviceName, moduleName: values.moduleName, actionType: values.actionType, + menuId: values.menuId, }) } onOpenChange(false) @@ -292,16 +299,43 @@ export function PermissionFormDialog({ open, onOpenChange, permission }: Permiss name="description" render={({ field }) => ( - Description + + Description * +