@kernelminds/scailo-sdk 0.0.33 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/src/payroll_groups.scailo_connect.js +46 -0
- package/lib/cjs/src/payroll_params.scailo_connect.js +23 -0
- package/lib/cjs/src/skills_groups.scailo_connect.js +46 -0
- package/lib/cjs/src/skills_params.scailo_connect.js +23 -0
- package/lib/cjs/types/src/payroll_groups.scailo_connect.d.ts +47 -1
- package/lib/cjs/types/src/payroll_groups.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/payroll_params.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/payroll_params.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/skills_groups.scailo_connect.d.ts +47 -1
- package/lib/cjs/types/src/skills_groups.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/skills_params.scailo_connect.d.ts +24 -1
- package/lib/cjs/types/src/skills_params.scailo_connect.d.ts.map +1 -1
- package/lib/esm/src/payroll_groups.scailo_connect.js +46 -0
- package/lib/esm/src/payroll_params.scailo_connect.js +23 -0
- package/lib/esm/src/skills_groups.scailo_connect.js +46 -0
- package/lib/esm/src/skills_params.scailo_connect.js +23 -0
- package/lib/esm/types/src/payroll_groups.scailo_connect.d.ts +47 -1
- package/lib/esm/types/src/payroll_groups.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/payroll_params.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/payroll_params.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/skills_groups.scailo_connect.d.ts +47 -1
- package/lib/esm/types/src/skills_groups.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/skills_params.scailo_connect.d.ts +24 -1
- package/lib/esm/types/src/skills_params.scailo_connect.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -295,6 +295,29 @@ exports.PayrollGroupsService = {
|
|
|
295
295
|
O: payroll_groups_scailo_pb_js_1.PayrollGroupsItemsList,
|
|
296
296
|
kind: protobuf_1.MethodKind.Unary,
|
|
297
297
|
},
|
|
298
|
+
/**
|
|
299
|
+
* CSV operations
|
|
300
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
301
|
+
*
|
|
302
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadItemsAsCSV
|
|
303
|
+
*/
|
|
304
|
+
downloadItemsAsCSV: {
|
|
305
|
+
name: "DownloadItemsAsCSV",
|
|
306
|
+
I: base_scailo_pb_js_1.IdentifierUUID,
|
|
307
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
308
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
309
|
+
},
|
|
310
|
+
/**
|
|
311
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
312
|
+
*
|
|
313
|
+
* @generated from rpc Scailo.PayrollGroupsService.UploadPayrollGroupItems
|
|
314
|
+
*/
|
|
315
|
+
uploadPayrollGroupItems: {
|
|
316
|
+
name: "UploadPayrollGroupItems",
|
|
317
|
+
I: base_scailo_pb_js_1.IdentifierUUIDWithFile,
|
|
318
|
+
O: base_scailo_pb_js_1.IdentifiersList,
|
|
319
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
320
|
+
},
|
|
298
321
|
/**
|
|
299
322
|
* View by ID
|
|
300
323
|
*
|
|
@@ -394,5 +417,28 @@ exports.PayrollGroupsService = {
|
|
|
394
417
|
O: base_scailo_pb_js_1.CountResponse,
|
|
395
418
|
kind: protobuf_1.MethodKind.Unary,
|
|
396
419
|
},
|
|
420
|
+
/**
|
|
421
|
+
* CSV operations
|
|
422
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
423
|
+
*
|
|
424
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadAsCSV
|
|
425
|
+
*/
|
|
426
|
+
downloadAsCSV: {
|
|
427
|
+
name: "DownloadAsCSV",
|
|
428
|
+
I: payroll_groups_scailo_pb_js_1.PayrollGroupsServiceFilterReq,
|
|
429
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
430
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
431
|
+
},
|
|
432
|
+
/**
|
|
433
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
434
|
+
*
|
|
435
|
+
* @generated from rpc Scailo.PayrollGroupsService.ImportFromCSV
|
|
436
|
+
*/
|
|
437
|
+
importFromCSV: {
|
|
438
|
+
name: "ImportFromCSV",
|
|
439
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
440
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
441
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
442
|
+
},
|
|
397
443
|
}
|
|
398
444
|
};
|
|
@@ -273,5 +273,28 @@ exports.PayrollParamsService = {
|
|
|
273
273
|
O: base_scailo_pb_js_1.CountResponse,
|
|
274
274
|
kind: protobuf_1.MethodKind.Unary,
|
|
275
275
|
},
|
|
276
|
+
/**
|
|
277
|
+
* CSV operations
|
|
278
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
279
|
+
*
|
|
280
|
+
* @generated from rpc Scailo.PayrollParamsService.DownloadAsCSV
|
|
281
|
+
*/
|
|
282
|
+
downloadAsCSV: {
|
|
283
|
+
name: "DownloadAsCSV",
|
|
284
|
+
I: payroll_params_scailo_pb_js_1.PayrollParamsServiceFilterReq,
|
|
285
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
286
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
287
|
+
},
|
|
288
|
+
/**
|
|
289
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
290
|
+
*
|
|
291
|
+
* @generated from rpc Scailo.PayrollParamsService.ImportFromCSV
|
|
292
|
+
*/
|
|
293
|
+
importFromCSV: {
|
|
294
|
+
name: "ImportFromCSV",
|
|
295
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
296
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
297
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
298
|
+
},
|
|
276
299
|
}
|
|
277
300
|
};
|
|
@@ -295,6 +295,29 @@ exports.SkillsGroupsService = {
|
|
|
295
295
|
O: skills_groups_scailo_pb_js_1.SkillsGroupsItemsList,
|
|
296
296
|
kind: protobuf_1.MethodKind.Unary,
|
|
297
297
|
},
|
|
298
|
+
/**
|
|
299
|
+
* CSV operations
|
|
300
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
301
|
+
*
|
|
302
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadItemsAsCSV
|
|
303
|
+
*/
|
|
304
|
+
downloadItemsAsCSV: {
|
|
305
|
+
name: "DownloadItemsAsCSV",
|
|
306
|
+
I: base_scailo_pb_js_1.IdentifierUUID,
|
|
307
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
308
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
309
|
+
},
|
|
310
|
+
/**
|
|
311
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
312
|
+
*
|
|
313
|
+
* @generated from rpc Scailo.SkillsGroupsService.UploadSkillGroupItems
|
|
314
|
+
*/
|
|
315
|
+
uploadSkillGroupItems: {
|
|
316
|
+
name: "UploadSkillGroupItems",
|
|
317
|
+
I: base_scailo_pb_js_1.IdentifierUUIDWithFile,
|
|
318
|
+
O: base_scailo_pb_js_1.IdentifiersList,
|
|
319
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
320
|
+
},
|
|
298
321
|
/**
|
|
299
322
|
* View by ID
|
|
300
323
|
*
|
|
@@ -405,5 +428,28 @@ exports.SkillsGroupsService = {
|
|
|
405
428
|
O: base_scailo_pb_js_1.CountResponse,
|
|
406
429
|
kind: protobuf_1.MethodKind.Unary,
|
|
407
430
|
},
|
|
431
|
+
/**
|
|
432
|
+
* CSV operations
|
|
433
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
434
|
+
*
|
|
435
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadAsCSV
|
|
436
|
+
*/
|
|
437
|
+
downloadAsCSV: {
|
|
438
|
+
name: "DownloadAsCSV",
|
|
439
|
+
I: skills_groups_scailo_pb_js_1.SkillsGroupsServiceFilterReq,
|
|
440
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
441
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
442
|
+
},
|
|
443
|
+
/**
|
|
444
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
445
|
+
*
|
|
446
|
+
* @generated from rpc Scailo.SkillsGroupsService.ImportFromCSV
|
|
447
|
+
*/
|
|
448
|
+
importFromCSV: {
|
|
449
|
+
name: "ImportFromCSV",
|
|
450
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
451
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
452
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
453
|
+
},
|
|
408
454
|
}
|
|
409
455
|
};
|
|
@@ -273,5 +273,28 @@ exports.SkillsParamsService = {
|
|
|
273
273
|
O: base_scailo_pb_js_1.CountResponse,
|
|
274
274
|
kind: protobuf_1.MethodKind.Unary,
|
|
275
275
|
},
|
|
276
|
+
/**
|
|
277
|
+
* CSV operations
|
|
278
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
279
|
+
*
|
|
280
|
+
* @generated from rpc Scailo.SkillsParamsService.DownloadAsCSV
|
|
281
|
+
*/
|
|
282
|
+
downloadAsCSV: {
|
|
283
|
+
name: "DownloadAsCSV",
|
|
284
|
+
I: skills_params_scailo_pb_js_1.SkillsParamsServiceFilterReq,
|
|
285
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
286
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
287
|
+
},
|
|
288
|
+
/**
|
|
289
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
290
|
+
*
|
|
291
|
+
* @generated from rpc Scailo.SkillsParamsService.ImportFromCSV
|
|
292
|
+
*/
|
|
293
|
+
importFromCSV: {
|
|
294
|
+
name: "ImportFromCSV",
|
|
295
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
296
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
297
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
298
|
+
},
|
|
276
299
|
}
|
|
277
300
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PayrollGroup, PayrollGroupItem, PayrollGroupItemHistoryRequest, PayrollGroupsItemsList, PayrollGroupsList, PayrollGroupsServiceCountReq, PayrollGroupsServiceCreateRequest, PayrollGroupsServiceFilterReq, PayrollGroupsServiceItemCreateRequest, PayrollGroupsServiceItemUpdateRequest, PayrollGroupsServicePaginationReq, PayrollGroupsServicePaginationResponse, PayrollGroupsServiceSearchAllReq, PayrollGroupsServiceUpdateRequest } from "./payroll_groups.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -288,6 +288,29 @@ export declare const PayrollGroupsService: {
|
|
|
288
288
|
readonly O: typeof PayrollGroupsItemsList;
|
|
289
289
|
readonly kind: MethodKind.Unary;
|
|
290
290
|
};
|
|
291
|
+
/**
|
|
292
|
+
* CSV operations
|
|
293
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
294
|
+
*
|
|
295
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadItemsAsCSV
|
|
296
|
+
*/
|
|
297
|
+
readonly downloadItemsAsCSV: {
|
|
298
|
+
readonly name: "DownloadItemsAsCSV";
|
|
299
|
+
readonly I: typeof IdentifierUUID;
|
|
300
|
+
readonly O: typeof StandardFile;
|
|
301
|
+
readonly kind: MethodKind.Unary;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
305
|
+
*
|
|
306
|
+
* @generated from rpc Scailo.PayrollGroupsService.UploadPayrollGroupItems
|
|
307
|
+
*/
|
|
308
|
+
readonly uploadPayrollGroupItems: {
|
|
309
|
+
readonly name: "UploadPayrollGroupItems";
|
|
310
|
+
readonly I: typeof IdentifierUUIDWithFile;
|
|
311
|
+
readonly O: typeof IdentifiersList;
|
|
312
|
+
readonly kind: MethodKind.Unary;
|
|
313
|
+
};
|
|
291
314
|
/**
|
|
292
315
|
* View by ID
|
|
293
316
|
*
|
|
@@ -387,6 +410,29 @@ export declare const PayrollGroupsService: {
|
|
|
387
410
|
readonly O: typeof CountResponse;
|
|
388
411
|
readonly kind: MethodKind.Unary;
|
|
389
412
|
};
|
|
413
|
+
/**
|
|
414
|
+
* CSV operations
|
|
415
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
416
|
+
*
|
|
417
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadAsCSV
|
|
418
|
+
*/
|
|
419
|
+
readonly downloadAsCSV: {
|
|
420
|
+
readonly name: "DownloadAsCSV";
|
|
421
|
+
readonly I: typeof PayrollGroupsServiceFilterReq;
|
|
422
|
+
readonly O: typeof StandardFile;
|
|
423
|
+
readonly kind: MethodKind.Unary;
|
|
424
|
+
};
|
|
425
|
+
/**
|
|
426
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
427
|
+
*
|
|
428
|
+
* @generated from rpc Scailo.PayrollGroupsService.ImportFromCSV
|
|
429
|
+
*/
|
|
430
|
+
readonly importFromCSV: {
|
|
431
|
+
readonly name: "ImportFromCSV";
|
|
432
|
+
readonly I: typeof StandardFile;
|
|
433
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
434
|
+
readonly kind: MethodKind.Unary;
|
|
435
|
+
};
|
|
390
436
|
};
|
|
391
437
|
};
|
|
392
438
|
//# sourceMappingURL=payroll_groups.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payroll_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,qCAAqC,EAAE,qCAAqC,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AACxd,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"payroll_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,qCAAqC,EAAE,qCAAqC,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AACxd,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7U,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB;;;QAG7B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PayrollParam, PayrollParamsList, PayrollParamsServiceCountReq, PayrollParamsServiceCreateRequest, PayrollParamsServiceFilterReq, PayrollParamsServicePaginationReq, PayrollParamsServicePaginationResponse, PayrollParamsServiceSearchAllReq, PayrollParamsServiceUpdateRequest } from "./payroll_params.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithUserComment, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -266,6 +266,29 @@ export declare const PayrollParamsService: {
|
|
|
266
266
|
readonly O: typeof CountResponse;
|
|
267
267
|
readonly kind: MethodKind.Unary;
|
|
268
268
|
};
|
|
269
|
+
/**
|
|
270
|
+
* CSV operations
|
|
271
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
272
|
+
*
|
|
273
|
+
* @generated from rpc Scailo.PayrollParamsService.DownloadAsCSV
|
|
274
|
+
*/
|
|
275
|
+
readonly downloadAsCSV: {
|
|
276
|
+
readonly name: "DownloadAsCSV";
|
|
277
|
+
readonly I: typeof PayrollParamsServiceFilterReq;
|
|
278
|
+
readonly O: typeof StandardFile;
|
|
279
|
+
readonly kind: MethodKind.Unary;
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
283
|
+
*
|
|
284
|
+
* @generated from rpc Scailo.PayrollParamsService.ImportFromCSV
|
|
285
|
+
*/
|
|
286
|
+
readonly importFromCSV: {
|
|
287
|
+
readonly name: "ImportFromCSV";
|
|
288
|
+
readonly I: typeof StandardFile;
|
|
289
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
290
|
+
readonly kind: MethodKind.Unary;
|
|
291
|
+
};
|
|
269
292
|
};
|
|
270
293
|
};
|
|
271
294
|
//# sourceMappingURL=payroll_params.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payroll_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChU,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"payroll_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChU,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7M,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB;;;QAG7B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SkillGroup, SkillGroupItem, SkillGroupItemHistoryRequest, SkillsGroupsItemsList, SkillsGroupsList, SkillsGroupsServiceCountReq, SkillsGroupsServiceCreateRequest, SkillsGroupsServiceFilterReq, SkillsGroupsServiceItemCreateRequest, SkillsGroupsServiceItemUpdateRequest, SkillsGroupsServicePaginationReq, SkillsGroupsServicePaginationResponse, SkillsGroupsServiceSearchAllReq, SkillsGroupsServiceUpdateRequest } from "./skills_groups.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -288,6 +288,29 @@ export declare const SkillsGroupsService: {
|
|
|
288
288
|
readonly O: typeof SkillsGroupsItemsList;
|
|
289
289
|
readonly kind: MethodKind.Unary;
|
|
290
290
|
};
|
|
291
|
+
/**
|
|
292
|
+
* CSV operations
|
|
293
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
294
|
+
*
|
|
295
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadItemsAsCSV
|
|
296
|
+
*/
|
|
297
|
+
readonly downloadItemsAsCSV: {
|
|
298
|
+
readonly name: "DownloadItemsAsCSV";
|
|
299
|
+
readonly I: typeof IdentifierUUID;
|
|
300
|
+
readonly O: typeof StandardFile;
|
|
301
|
+
readonly kind: MethodKind.Unary;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
305
|
+
*
|
|
306
|
+
* @generated from rpc Scailo.SkillsGroupsService.UploadSkillGroupItems
|
|
307
|
+
*/
|
|
308
|
+
readonly uploadSkillGroupItems: {
|
|
309
|
+
readonly name: "UploadSkillGroupItems";
|
|
310
|
+
readonly I: typeof IdentifierUUIDWithFile;
|
|
311
|
+
readonly O: typeof IdentifiersList;
|
|
312
|
+
readonly kind: MethodKind.Unary;
|
|
313
|
+
};
|
|
291
314
|
/**
|
|
292
315
|
* View by ID
|
|
293
316
|
*
|
|
@@ -398,6 +421,29 @@ export declare const SkillsGroupsService: {
|
|
|
398
421
|
readonly O: typeof CountResponse;
|
|
399
422
|
readonly kind: MethodKind.Unary;
|
|
400
423
|
};
|
|
424
|
+
/**
|
|
425
|
+
* CSV operations
|
|
426
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
427
|
+
*
|
|
428
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadAsCSV
|
|
429
|
+
*/
|
|
430
|
+
readonly downloadAsCSV: {
|
|
431
|
+
readonly name: "DownloadAsCSV";
|
|
432
|
+
readonly I: typeof SkillsGroupsServiceFilterReq;
|
|
433
|
+
readonly O: typeof StandardFile;
|
|
434
|
+
readonly kind: MethodKind.Unary;
|
|
435
|
+
};
|
|
436
|
+
/**
|
|
437
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
438
|
+
*
|
|
439
|
+
* @generated from rpc Scailo.SkillsGroupsService.ImportFromCSV
|
|
440
|
+
*/
|
|
441
|
+
readonly importFromCSV: {
|
|
442
|
+
readonly name: "ImportFromCSV";
|
|
443
|
+
readonly I: typeof StandardFile;
|
|
444
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
445
|
+
readonly kind: MethodKind.Unary;
|
|
446
|
+
};
|
|
401
447
|
};
|
|
402
448
|
};
|
|
403
449
|
//# sourceMappingURL=skills_groups.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skills_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,4BAA4B,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,oCAAoC,EAAE,oCAAoC,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACtc,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"skills_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,4BAA4B,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,oCAAoC,EAAE,oCAAoC,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACtc,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7U,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SkillParam, SkillsParamsList, SkillsParamsServiceCountReq, SkillsParamsServiceCreateRequest, SkillsParamsServiceFilterReq, SkillsParamsServicePaginationReq, SkillsParamsServicePaginationResponse, SkillsParamsServiceSearchAllReq, SkillsParamsServiceUpdateRequest } from "./skills_params.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithUserComment, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -266,6 +266,29 @@ export declare const SkillsParamsService: {
|
|
|
266
266
|
readonly O: typeof CountResponse;
|
|
267
267
|
readonly kind: MethodKind.Unary;
|
|
268
268
|
};
|
|
269
|
+
/**
|
|
270
|
+
* CSV operations
|
|
271
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
272
|
+
*
|
|
273
|
+
* @generated from rpc Scailo.SkillsParamsService.DownloadAsCSV
|
|
274
|
+
*/
|
|
275
|
+
readonly downloadAsCSV: {
|
|
276
|
+
readonly name: "DownloadAsCSV";
|
|
277
|
+
readonly I: typeof SkillsParamsServiceFilterReq;
|
|
278
|
+
readonly O: typeof StandardFile;
|
|
279
|
+
readonly kind: MethodKind.Unary;
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
283
|
+
*
|
|
284
|
+
* @generated from rpc Scailo.SkillsParamsService.ImportFromCSV
|
|
285
|
+
*/
|
|
286
|
+
readonly importFromCSV: {
|
|
287
|
+
readonly name: "ImportFromCSV";
|
|
288
|
+
readonly I: typeof StandardFile;
|
|
289
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
290
|
+
readonly kind: MethodKind.Unary;
|
|
291
|
+
};
|
|
269
292
|
};
|
|
270
293
|
};
|
|
271
294
|
//# sourceMappingURL=skills_params.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skills_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACrT,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"skills_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACrT,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7M,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -295,6 +295,29 @@ exports.PayrollGroupsService = {
|
|
|
295
295
|
O: payroll_groups_scailo_pb_js_1.PayrollGroupsItemsList,
|
|
296
296
|
kind: protobuf_1.MethodKind.Unary,
|
|
297
297
|
},
|
|
298
|
+
/**
|
|
299
|
+
* CSV operations
|
|
300
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
301
|
+
*
|
|
302
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadItemsAsCSV
|
|
303
|
+
*/
|
|
304
|
+
downloadItemsAsCSV: {
|
|
305
|
+
name: "DownloadItemsAsCSV",
|
|
306
|
+
I: base_scailo_pb_js_1.IdentifierUUID,
|
|
307
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
308
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
309
|
+
},
|
|
310
|
+
/**
|
|
311
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
312
|
+
*
|
|
313
|
+
* @generated from rpc Scailo.PayrollGroupsService.UploadPayrollGroupItems
|
|
314
|
+
*/
|
|
315
|
+
uploadPayrollGroupItems: {
|
|
316
|
+
name: "UploadPayrollGroupItems",
|
|
317
|
+
I: base_scailo_pb_js_1.IdentifierUUIDWithFile,
|
|
318
|
+
O: base_scailo_pb_js_1.IdentifiersList,
|
|
319
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
320
|
+
},
|
|
298
321
|
/**
|
|
299
322
|
* View by ID
|
|
300
323
|
*
|
|
@@ -394,5 +417,28 @@ exports.PayrollGroupsService = {
|
|
|
394
417
|
O: base_scailo_pb_js_1.CountResponse,
|
|
395
418
|
kind: protobuf_1.MethodKind.Unary,
|
|
396
419
|
},
|
|
420
|
+
/**
|
|
421
|
+
* CSV operations
|
|
422
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
423
|
+
*
|
|
424
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadAsCSV
|
|
425
|
+
*/
|
|
426
|
+
downloadAsCSV: {
|
|
427
|
+
name: "DownloadAsCSV",
|
|
428
|
+
I: payroll_groups_scailo_pb_js_1.PayrollGroupsServiceFilterReq,
|
|
429
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
430
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
431
|
+
},
|
|
432
|
+
/**
|
|
433
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
434
|
+
*
|
|
435
|
+
* @generated from rpc Scailo.PayrollGroupsService.ImportFromCSV
|
|
436
|
+
*/
|
|
437
|
+
importFromCSV: {
|
|
438
|
+
name: "ImportFromCSV",
|
|
439
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
440
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
441
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
442
|
+
},
|
|
397
443
|
}
|
|
398
444
|
};
|
|
@@ -273,5 +273,28 @@ exports.PayrollParamsService = {
|
|
|
273
273
|
O: base_scailo_pb_js_1.CountResponse,
|
|
274
274
|
kind: protobuf_1.MethodKind.Unary,
|
|
275
275
|
},
|
|
276
|
+
/**
|
|
277
|
+
* CSV operations
|
|
278
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
279
|
+
*
|
|
280
|
+
* @generated from rpc Scailo.PayrollParamsService.DownloadAsCSV
|
|
281
|
+
*/
|
|
282
|
+
downloadAsCSV: {
|
|
283
|
+
name: "DownloadAsCSV",
|
|
284
|
+
I: payroll_params_scailo_pb_js_1.PayrollParamsServiceFilterReq,
|
|
285
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
286
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
287
|
+
},
|
|
288
|
+
/**
|
|
289
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
290
|
+
*
|
|
291
|
+
* @generated from rpc Scailo.PayrollParamsService.ImportFromCSV
|
|
292
|
+
*/
|
|
293
|
+
importFromCSV: {
|
|
294
|
+
name: "ImportFromCSV",
|
|
295
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
296
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
297
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
298
|
+
},
|
|
276
299
|
}
|
|
277
300
|
};
|
|
@@ -295,6 +295,29 @@ exports.SkillsGroupsService = {
|
|
|
295
295
|
O: skills_groups_scailo_pb_js_1.SkillsGroupsItemsList,
|
|
296
296
|
kind: protobuf_1.MethodKind.Unary,
|
|
297
297
|
},
|
|
298
|
+
/**
|
|
299
|
+
* CSV operations
|
|
300
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
301
|
+
*
|
|
302
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadItemsAsCSV
|
|
303
|
+
*/
|
|
304
|
+
downloadItemsAsCSV: {
|
|
305
|
+
name: "DownloadItemsAsCSV",
|
|
306
|
+
I: base_scailo_pb_js_1.IdentifierUUID,
|
|
307
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
308
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
309
|
+
},
|
|
310
|
+
/**
|
|
311
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
312
|
+
*
|
|
313
|
+
* @generated from rpc Scailo.SkillsGroupsService.UploadSkillGroupItems
|
|
314
|
+
*/
|
|
315
|
+
uploadSkillGroupItems: {
|
|
316
|
+
name: "UploadSkillGroupItems",
|
|
317
|
+
I: base_scailo_pb_js_1.IdentifierUUIDWithFile,
|
|
318
|
+
O: base_scailo_pb_js_1.IdentifiersList,
|
|
319
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
320
|
+
},
|
|
298
321
|
/**
|
|
299
322
|
* View by ID
|
|
300
323
|
*
|
|
@@ -405,5 +428,28 @@ exports.SkillsGroupsService = {
|
|
|
405
428
|
O: base_scailo_pb_js_1.CountResponse,
|
|
406
429
|
kind: protobuf_1.MethodKind.Unary,
|
|
407
430
|
},
|
|
431
|
+
/**
|
|
432
|
+
* CSV operations
|
|
433
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
434
|
+
*
|
|
435
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadAsCSV
|
|
436
|
+
*/
|
|
437
|
+
downloadAsCSV: {
|
|
438
|
+
name: "DownloadAsCSV",
|
|
439
|
+
I: skills_groups_scailo_pb_js_1.SkillsGroupsServiceFilterReq,
|
|
440
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
441
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
442
|
+
},
|
|
443
|
+
/**
|
|
444
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
445
|
+
*
|
|
446
|
+
* @generated from rpc Scailo.SkillsGroupsService.ImportFromCSV
|
|
447
|
+
*/
|
|
448
|
+
importFromCSV: {
|
|
449
|
+
name: "ImportFromCSV",
|
|
450
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
451
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
452
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
453
|
+
},
|
|
408
454
|
}
|
|
409
455
|
};
|
|
@@ -273,5 +273,28 @@ exports.SkillsParamsService = {
|
|
|
273
273
|
O: base_scailo_pb_js_1.CountResponse,
|
|
274
274
|
kind: protobuf_1.MethodKind.Unary,
|
|
275
275
|
},
|
|
276
|
+
/**
|
|
277
|
+
* CSV operations
|
|
278
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
279
|
+
*
|
|
280
|
+
* @generated from rpc Scailo.SkillsParamsService.DownloadAsCSV
|
|
281
|
+
*/
|
|
282
|
+
downloadAsCSV: {
|
|
283
|
+
name: "DownloadAsCSV",
|
|
284
|
+
I: skills_params_scailo_pb_js_1.SkillsParamsServiceFilterReq,
|
|
285
|
+
O: base_scailo_pb_js_1.StandardFile,
|
|
286
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
287
|
+
},
|
|
288
|
+
/**
|
|
289
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
290
|
+
*
|
|
291
|
+
* @generated from rpc Scailo.SkillsParamsService.ImportFromCSV
|
|
292
|
+
*/
|
|
293
|
+
importFromCSV: {
|
|
294
|
+
name: "ImportFromCSV",
|
|
295
|
+
I: base_scailo_pb_js_1.StandardFile,
|
|
296
|
+
O: base_scailo_pb_js_1.IdentifierUUIDsList,
|
|
297
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
298
|
+
},
|
|
276
299
|
}
|
|
277
300
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PayrollGroup, PayrollGroupItem, PayrollGroupItemHistoryRequest, PayrollGroupsItemsList, PayrollGroupsList, PayrollGroupsServiceCountReq, PayrollGroupsServiceCreateRequest, PayrollGroupsServiceFilterReq, PayrollGroupsServiceItemCreateRequest, PayrollGroupsServiceItemUpdateRequest, PayrollGroupsServicePaginationReq, PayrollGroupsServicePaginationResponse, PayrollGroupsServiceSearchAllReq, PayrollGroupsServiceUpdateRequest } from "./payroll_groups.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -288,6 +288,29 @@ export declare const PayrollGroupsService: {
|
|
|
288
288
|
readonly O: typeof PayrollGroupsItemsList;
|
|
289
289
|
readonly kind: MethodKind.Unary;
|
|
290
290
|
};
|
|
291
|
+
/**
|
|
292
|
+
* CSV operations
|
|
293
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
294
|
+
*
|
|
295
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadItemsAsCSV
|
|
296
|
+
*/
|
|
297
|
+
readonly downloadItemsAsCSV: {
|
|
298
|
+
readonly name: "DownloadItemsAsCSV";
|
|
299
|
+
readonly I: typeof IdentifierUUID;
|
|
300
|
+
readonly O: typeof StandardFile;
|
|
301
|
+
readonly kind: MethodKind.Unary;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
305
|
+
*
|
|
306
|
+
* @generated from rpc Scailo.PayrollGroupsService.UploadPayrollGroupItems
|
|
307
|
+
*/
|
|
308
|
+
readonly uploadPayrollGroupItems: {
|
|
309
|
+
readonly name: "UploadPayrollGroupItems";
|
|
310
|
+
readonly I: typeof IdentifierUUIDWithFile;
|
|
311
|
+
readonly O: typeof IdentifiersList;
|
|
312
|
+
readonly kind: MethodKind.Unary;
|
|
313
|
+
};
|
|
291
314
|
/**
|
|
292
315
|
* View by ID
|
|
293
316
|
*
|
|
@@ -387,6 +410,29 @@ export declare const PayrollGroupsService: {
|
|
|
387
410
|
readonly O: typeof CountResponse;
|
|
388
411
|
readonly kind: MethodKind.Unary;
|
|
389
412
|
};
|
|
413
|
+
/**
|
|
414
|
+
* CSV operations
|
|
415
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
416
|
+
*
|
|
417
|
+
* @generated from rpc Scailo.PayrollGroupsService.DownloadAsCSV
|
|
418
|
+
*/
|
|
419
|
+
readonly downloadAsCSV: {
|
|
420
|
+
readonly name: "DownloadAsCSV";
|
|
421
|
+
readonly I: typeof PayrollGroupsServiceFilterReq;
|
|
422
|
+
readonly O: typeof StandardFile;
|
|
423
|
+
readonly kind: MethodKind.Unary;
|
|
424
|
+
};
|
|
425
|
+
/**
|
|
426
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
427
|
+
*
|
|
428
|
+
* @generated from rpc Scailo.PayrollGroupsService.ImportFromCSV
|
|
429
|
+
*/
|
|
430
|
+
readonly importFromCSV: {
|
|
431
|
+
readonly name: "ImportFromCSV";
|
|
432
|
+
readonly I: typeof StandardFile;
|
|
433
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
434
|
+
readonly kind: MethodKind.Unary;
|
|
435
|
+
};
|
|
390
436
|
};
|
|
391
437
|
};
|
|
392
438
|
//# sourceMappingURL=payroll_groups.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payroll_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,qCAAqC,EAAE,qCAAqC,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AACxd,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"payroll_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,gBAAgB,EAAE,8BAA8B,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,qCAAqC,EAAE,qCAAqC,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AACxd,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7U,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB;;;QAG7B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PayrollParam, PayrollParamsList, PayrollParamsServiceCountReq, PayrollParamsServiceCreateRequest, PayrollParamsServiceFilterReq, PayrollParamsServicePaginationReq, PayrollParamsServicePaginationResponse, PayrollParamsServiceSearchAllReq, PayrollParamsServiceUpdateRequest } from "./payroll_params.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithUserComment, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -266,6 +266,29 @@ export declare const PayrollParamsService: {
|
|
|
266
266
|
readonly O: typeof CountResponse;
|
|
267
267
|
readonly kind: MethodKind.Unary;
|
|
268
268
|
};
|
|
269
|
+
/**
|
|
270
|
+
* CSV operations
|
|
271
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
272
|
+
*
|
|
273
|
+
* @generated from rpc Scailo.PayrollParamsService.DownloadAsCSV
|
|
274
|
+
*/
|
|
275
|
+
readonly downloadAsCSV: {
|
|
276
|
+
readonly name: "DownloadAsCSV";
|
|
277
|
+
readonly I: typeof PayrollParamsServiceFilterReq;
|
|
278
|
+
readonly O: typeof StandardFile;
|
|
279
|
+
readonly kind: MethodKind.Unary;
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
283
|
+
*
|
|
284
|
+
* @generated from rpc Scailo.PayrollParamsService.ImportFromCSV
|
|
285
|
+
*/
|
|
286
|
+
readonly importFromCSV: {
|
|
287
|
+
readonly name: "ImportFromCSV";
|
|
288
|
+
readonly I: typeof StandardFile;
|
|
289
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
290
|
+
readonly kind: MethodKind.Unary;
|
|
291
|
+
};
|
|
269
292
|
};
|
|
270
293
|
};
|
|
271
294
|
//# sourceMappingURL=payroll_params.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payroll_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChU,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"payroll_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/payroll_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChU,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7M,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB;;;QAG7B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SkillGroup, SkillGroupItem, SkillGroupItemHistoryRequest, SkillsGroupsItemsList, SkillsGroupsList, SkillsGroupsServiceCountReq, SkillsGroupsServiceCreateRequest, SkillsGroupsServiceFilterReq, SkillsGroupsServiceItemCreateRequest, SkillsGroupsServiceItemUpdateRequest, SkillsGroupsServicePaginationReq, SkillsGroupsServicePaginationResponse, SkillsGroupsServiceSearchAllReq, SkillsGroupsServiceUpdateRequest } from "./skills_groups.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CloneRequest, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -288,6 +288,29 @@ export declare const SkillsGroupsService: {
|
|
|
288
288
|
readonly O: typeof SkillsGroupsItemsList;
|
|
289
289
|
readonly kind: MethodKind.Unary;
|
|
290
290
|
};
|
|
291
|
+
/**
|
|
292
|
+
* CSV operations
|
|
293
|
+
* Download the CSV file that could be used to upload items from the filled CSV file. The same file can also be used as a template when there are no existing records
|
|
294
|
+
*
|
|
295
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadItemsAsCSV
|
|
296
|
+
*/
|
|
297
|
+
readonly downloadItemsAsCSV: {
|
|
298
|
+
readonly name: "DownloadItemsAsCSV";
|
|
299
|
+
readonly I: typeof IdentifierUUID;
|
|
300
|
+
readonly O: typeof StandardFile;
|
|
301
|
+
readonly kind: MethodKind.Unary;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* Upload items using a CSV file. This is an idempotent operation. All the existing items are deleted before adding the items from the file.
|
|
305
|
+
*
|
|
306
|
+
* @generated from rpc Scailo.SkillsGroupsService.UploadSkillGroupItems
|
|
307
|
+
*/
|
|
308
|
+
readonly uploadSkillGroupItems: {
|
|
309
|
+
readonly name: "UploadSkillGroupItems";
|
|
310
|
+
readonly I: typeof IdentifierUUIDWithFile;
|
|
311
|
+
readonly O: typeof IdentifiersList;
|
|
312
|
+
readonly kind: MethodKind.Unary;
|
|
313
|
+
};
|
|
291
314
|
/**
|
|
292
315
|
* View by ID
|
|
293
316
|
*
|
|
@@ -398,6 +421,29 @@ export declare const SkillsGroupsService: {
|
|
|
398
421
|
readonly O: typeof CountResponse;
|
|
399
422
|
readonly kind: MethodKind.Unary;
|
|
400
423
|
};
|
|
424
|
+
/**
|
|
425
|
+
* CSV operations
|
|
426
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
427
|
+
*
|
|
428
|
+
* @generated from rpc Scailo.SkillsGroupsService.DownloadAsCSV
|
|
429
|
+
*/
|
|
430
|
+
readonly downloadAsCSV: {
|
|
431
|
+
readonly name: "DownloadAsCSV";
|
|
432
|
+
readonly I: typeof SkillsGroupsServiceFilterReq;
|
|
433
|
+
readonly O: typeof StandardFile;
|
|
434
|
+
readonly kind: MethodKind.Unary;
|
|
435
|
+
};
|
|
436
|
+
/**
|
|
437
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
438
|
+
*
|
|
439
|
+
* @generated from rpc Scailo.SkillsGroupsService.ImportFromCSV
|
|
440
|
+
*/
|
|
441
|
+
readonly importFromCSV: {
|
|
442
|
+
readonly name: "ImportFromCSV";
|
|
443
|
+
readonly I: typeof StandardFile;
|
|
444
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
445
|
+
readonly kind: MethodKind.Unary;
|
|
446
|
+
};
|
|
401
447
|
};
|
|
402
448
|
};
|
|
403
449
|
//# sourceMappingURL=skills_groups.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skills_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,4BAA4B,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,oCAAoC,EAAE,oCAAoC,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACtc,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"skills_groups.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_groups.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,4BAA4B,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,oCAAoC,EAAE,oCAAoC,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACtc,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7U,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SkillParam, SkillsParamsList, SkillsParamsServiceCountReq, SkillsParamsServiceCreateRequest, SkillsParamsServiceFilterReq, SkillsParamsServicePaginationReq, SkillsParamsServicePaginationResponse, SkillsParamsServiceSearchAllReq, SkillsParamsServiceUpdateRequest } from "./skills_params.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDsList, IdentifierUUIDWithUserComment, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
@@ -266,6 +266,29 @@ export declare const SkillsParamsService: {
|
|
|
266
266
|
readonly O: typeof CountResponse;
|
|
267
267
|
readonly kind: MethodKind.Unary;
|
|
268
268
|
};
|
|
269
|
+
/**
|
|
270
|
+
* CSV operations
|
|
271
|
+
* Download the CSV file that consists of the list of records according to the given filter request. The same file could also be used as a template for uploading records
|
|
272
|
+
*
|
|
273
|
+
* @generated from rpc Scailo.SkillsParamsService.DownloadAsCSV
|
|
274
|
+
*/
|
|
275
|
+
readonly downloadAsCSV: {
|
|
276
|
+
readonly name: "DownloadAsCSV";
|
|
277
|
+
readonly I: typeof SkillsParamsServiceFilterReq;
|
|
278
|
+
readonly O: typeof StandardFile;
|
|
279
|
+
readonly kind: MethodKind.Unary;
|
|
280
|
+
};
|
|
281
|
+
/**
|
|
282
|
+
* Import records using a CSV file (duplicate codes will be skipped)
|
|
283
|
+
*
|
|
284
|
+
* @generated from rpc Scailo.SkillsParamsService.ImportFromCSV
|
|
285
|
+
*/
|
|
286
|
+
readonly importFromCSV: {
|
|
287
|
+
readonly name: "ImportFromCSV";
|
|
288
|
+
readonly I: typeof StandardFile;
|
|
289
|
+
readonly O: typeof IdentifierUUIDsList;
|
|
290
|
+
readonly kind: MethodKind.Unary;
|
|
291
|
+
};
|
|
269
292
|
};
|
|
270
293
|
};
|
|
271
294
|
//# sourceMappingURL=skills_params.scailo_connect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skills_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACrT,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"skills_params.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/skills_params.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,2BAA2B,EAAE,gCAAgC,EAAE,4BAA4B,EAAE,gCAAgC,EAAE,qCAAqC,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,MAAM,8BAA8B,CAAC;AACrT,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC7M,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB;;;QAG5B;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|