@kernelminds/scailo-sdk 0.0.84 → 0.0.86

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.
Files changed (35) hide show
  1. package/lib/cjs/src/activities.scailo_connect.js +1 -1
  2. package/lib/cjs/src/activities_groups.scailo_connect.js +1 -1
  3. package/lib/cjs/src/client_streams.scailo_connect.js +12 -0
  4. package/lib/cjs/src/general_streams.scailo_connect.js +12 -0
  5. package/lib/cjs/src/projects.scailo_connect.js +1 -1
  6. package/lib/cjs/src/purchases_indents.scailo_connect.js +1 -1
  7. package/lib/cjs/src/vendor_streams.scailo_connect.js +12 -0
  8. package/lib/cjs/types/src/activities.scailo_connect.d.ts +1 -1
  9. package/lib/cjs/types/src/activities_groups.scailo_connect.d.ts +1 -1
  10. package/lib/cjs/types/src/client_streams.scailo_connect.d.ts +13 -1
  11. package/lib/cjs/types/src/client_streams.scailo_connect.d.ts.map +1 -1
  12. package/lib/cjs/types/src/general_streams.scailo_connect.d.ts +13 -1
  13. package/lib/cjs/types/src/general_streams.scailo_connect.d.ts.map +1 -1
  14. package/lib/cjs/types/src/projects.scailo_connect.d.ts +1 -1
  15. package/lib/cjs/types/src/purchases_indents.scailo_connect.d.ts +1 -1
  16. package/lib/cjs/types/src/vendor_streams.scailo_connect.d.ts +13 -1
  17. package/lib/cjs/types/src/vendor_streams.scailo_connect.d.ts.map +1 -1
  18. package/lib/esm/src/activities.scailo_connect.js +1 -1
  19. package/lib/esm/src/activities_groups.scailo_connect.js +1 -1
  20. package/lib/esm/src/client_streams.scailo_connect.js +12 -0
  21. package/lib/esm/src/general_streams.scailo_connect.js +12 -0
  22. package/lib/esm/src/projects.scailo_connect.js +1 -1
  23. package/lib/esm/src/purchases_indents.scailo_connect.js +1 -1
  24. package/lib/esm/src/vendor_streams.scailo_connect.js +12 -0
  25. package/lib/esm/types/src/activities.scailo_connect.d.ts +1 -1
  26. package/lib/esm/types/src/activities_groups.scailo_connect.d.ts +1 -1
  27. package/lib/esm/types/src/client_streams.scailo_connect.d.ts +13 -1
  28. package/lib/esm/types/src/client_streams.scailo_connect.d.ts.map +1 -1
  29. package/lib/esm/types/src/general_streams.scailo_connect.d.ts +13 -1
  30. package/lib/esm/types/src/general_streams.scailo_connect.d.ts.map +1 -1
  31. package/lib/esm/types/src/projects.scailo_connect.d.ts +1 -1
  32. package/lib/esm/types/src/purchases_indents.scailo_connect.d.ts +1 -1
  33. package/lib/esm/types/src/vendor_streams.scailo_connect.d.ts +13 -1
  34. package/lib/esm/types/src/vendor_streams.scailo_connect.d.ts.map +1 -1
  35. package/package.json +1 -1
@@ -579,7 +579,7 @@ exports.ActivitiesService = {
579
579
  */
580
580
  viewStatistics: {
581
581
  name: "ViewStatistics",
582
- I: base_scailo_pb_js_1.Identifier,
582
+ I: base_scailo_pb_js_1.IdentifierUUID,
583
583
  O: activities_scailo_pb_js_1.ActivityStatistics,
584
584
  kind: protobuf_1.MethodKind.Unary,
585
585
  },
@@ -247,7 +247,7 @@ exports.ActivitiesGroupsService = {
247
247
  */
248
248
  viewStatistics: {
249
249
  name: "ViewStatistics",
250
- I: base_scailo_pb_js_1.Identifier,
250
+ I: base_scailo_pb_js_1.IdentifierUUID,
251
251
  O: activities_groups_scailo_pb_js_1.ActivityGroupStatistics,
252
252
  kind: protobuf_1.MethodKind.Unary,
253
253
  },
@@ -416,5 +416,17 @@ exports.ClientStreamsService = {
416
416
  O: base_scailo_pb_js_1.CountResponse,
417
417
  kind: protobuf_1.MethodKind.Unary,
418
418
  },
419
+ /**
420
+ * CSV operations
421
+ * Download the CSV file that consists of the list of records according to the given filter request
422
+ *
423
+ * @generated from rpc Scailo.ClientStreamsService.DownloadAsCSV
424
+ */
425
+ downloadAsCSV: {
426
+ name: "DownloadAsCSV",
427
+ I: client_streams_scailo_pb_js_1.ClientStreamsServiceFilterReq,
428
+ O: base_scailo_pb_js_1.StandardFile,
429
+ kind: protobuf_1.MethodKind.Unary,
430
+ },
419
431
  }
420
432
  };
@@ -372,5 +372,17 @@ exports.GeneralStreamsService = {
372
372
  O: base_scailo_pb_js_1.CountResponse,
373
373
  kind: protobuf_1.MethodKind.Unary,
374
374
  },
375
+ /**
376
+ * CSV operations
377
+ * Download the CSV file that consists of the list of records according to the given filter request
378
+ *
379
+ * @generated from rpc Scailo.GeneralStreamsService.DownloadAsCSV
380
+ */
381
+ downloadAsCSV: {
382
+ name: "DownloadAsCSV",
383
+ I: general_streams_scailo_pb_js_1.GeneralStreamsServiceFilterReq,
384
+ O: base_scailo_pb_js_1.StandardFile,
385
+ kind: protobuf_1.MethodKind.Unary,
386
+ },
375
387
  }
376
388
  };
@@ -343,7 +343,7 @@ exports.ProjectsService = {
343
343
  */
344
344
  viewStatistics: {
345
345
  name: "ViewStatistics",
346
- I: base_scailo_pb_js_1.Identifier,
346
+ I: base_scailo_pb_js_1.IdentifierUUID,
347
347
  O: projects_scailo_pb_js_1.ProjectStatistics,
348
348
  kind: protobuf_1.MethodKind.Unary,
349
349
  },
@@ -521,7 +521,7 @@ exports.PurchasesIndentsService = {
521
521
  */
522
522
  viewOrderedStatistics: {
523
523
  name: "ViewOrderedStatistics",
524
- I: base_scailo_pb_js_1.Identifier,
524
+ I: base_scailo_pb_js_1.IdentifierUUID,
525
525
  O: purchases_indents_scailo_pb_js_1.PurchaseIndentOrderedStatisticsList,
526
526
  kind: protobuf_1.MethodKind.Unary,
527
527
  },
@@ -416,5 +416,17 @@ exports.VendorStreamsService = {
416
416
  O: base_scailo_pb_js_1.CountResponse,
417
417
  kind: protobuf_1.MethodKind.Unary,
418
418
  },
419
+ /**
420
+ * CSV operations
421
+ * Download the CSV file that consists of the list of records according to the given filter request
422
+ *
423
+ * @generated from rpc Scailo.VendorStreamsService.DownloadAsCSV
424
+ */
425
+ downloadAsCSV: {
426
+ name: "DownloadAsCSV",
427
+ I: vendor_streams_scailo_pb_js_1.VendorStreamsServiceFilterReq,
428
+ O: base_scailo_pb_js_1.StandardFile,
429
+ kind: protobuf_1.MethodKind.Unary,
430
+ },
419
431
  }
420
432
  };
@@ -572,7 +572,7 @@ export declare const ActivitiesService: {
572
572
  */
573
573
  readonly viewStatistics: {
574
574
  readonly name: "ViewStatistics";
575
- readonly I: typeof Identifier;
575
+ readonly I: typeof IdentifierUUID;
576
576
  readonly O: typeof ActivityStatistics;
577
577
  readonly kind: MethodKind.Unary;
578
578
  };
@@ -240,7 +240,7 @@ export declare const ActivitiesGroupsService: {
240
240
  */
241
241
  readonly viewStatistics: {
242
242
  readonly name: "ViewStatistics";
243
- readonly I: typeof Identifier;
243
+ readonly I: typeof IdentifierUUID;
244
244
  readonly O: typeof ActivityGroupStatistics;
245
245
  readonly kind: MethodKind.Unary;
246
246
  };
@@ -1,5 +1,5 @@
1
1
  import { ClientStream, ClientStreamClientSubscriber, ClientStreamClientSubscribersList, ClientStreamInternalSubscriber, ClientStreamInternalSubscribersList, ClientStreamMessage, ClientStreamMessageReceiptsList, ClientStreamMessagesList, ClientStreamMessagesSearchRequest, ClientStreamsList, ClientStreamsServiceClientSubscriberCreateRequest, ClientStreamsServiceCountReq, ClientStreamsServiceCreateRequest, ClientStreamsServiceFilterReq, ClientStreamsServiceImportInternalSubscribersRequest, ClientStreamsServiceInternalSubscriberCreateRequest, ClientStreamsServiceMessageCreateRequest, ClientStreamsServicePaginatedMessagesResponse, ClientStreamsServicePaginationReq, ClientStreamsServicePaginationResponse, ClientStreamsServiceSearchAllReq, ClientStreamsServiceUpdateRequest } from "./client_streams.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment, StandardFile } from "./base.scailo_pb.js";
3
3
  import { MethodKind } from "@bufbuild/protobuf";
4
4
  /**
5
5
  *
@@ -409,6 +409,18 @@ export declare const ClientStreamsService: {
409
409
  readonly O: typeof CountResponse;
410
410
  readonly kind: MethodKind.Unary;
411
411
  };
412
+ /**
413
+ * CSV operations
414
+ * Download the CSV file that consists of the list of records according to the given filter request
415
+ *
416
+ * @generated from rpc Scailo.ClientStreamsService.DownloadAsCSV
417
+ */
418
+ readonly downloadAsCSV: {
419
+ readonly name: "DownloadAsCSV";
420
+ readonly I: typeof ClientStreamsServiceFilterReq;
421
+ readonly O: typeof StandardFile;
422
+ readonly kind: MethodKind.Unary;
423
+ };
412
424
  };
413
425
  };
414
426
  //# sourceMappingURL=client_streams.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"client_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/client_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAC7L,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"client_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/client_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3M,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { GeneralStream, GeneralStreamInternalSubscriber, GeneralStreamInternalSubscribersList, GeneralStreamMessage, GeneralStreamMessageReceiptsList, GeneralStreamMessagesList, GeneralStreamMessagesSearchRequest, GeneralStreamsList, GeneralStreamsServiceCountReq, GeneralStreamsServiceCreateRequest, GeneralStreamsServiceFilterReq, GeneralStreamsServiceImportInternalSubscribersRequest, GeneralStreamsServiceInternalSubscriberCreateRequest, GeneralStreamsServiceMessageCreateRequest, GeneralStreamsServicePaginatedMessagesResponse, GeneralStreamsServicePaginationReq, GeneralStreamsServicePaginationResponse, GeneralStreamsServiceSearchAllReq, GeneralStreamsServiceUpdateRequest } from "./general_streams.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment, StandardFile } from "./base.scailo_pb.js";
3
3
  import { MethodKind } from "@bufbuild/protobuf";
4
4
  /**
5
5
  *
@@ -365,6 +365,18 @@ export declare const GeneralStreamsService: {
365
365
  readonly O: typeof CountResponse;
366
366
  readonly kind: MethodKind.Unary;
367
367
  };
368
+ /**
369
+ * CSV operations
370
+ * Download the CSV file that consists of the list of records according to the given filter request
371
+ *
372
+ * @generated from rpc Scailo.GeneralStreamsService.DownloadAsCSV
373
+ */
374
+ readonly downloadAsCSV: {
375
+ readonly name: "DownloadAsCSV";
376
+ readonly I: typeof GeneralStreamsServiceFilterReq;
377
+ readonly O: typeof StandardFile;
378
+ readonly kind: MethodKind.Unary;
379
+ };
368
380
  };
369
381
  };
370
382
  //# sourceMappingURL=general_streams.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"general_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/general_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,+BAA+B,EAAE,oCAAoC,EAAE,oBAAoB,EAAE,gCAAgC,EAAE,yBAAyB,EAAE,kCAAkC,EAAE,kBAAkB,EAAE,6BAA6B,EAAE,kCAAkC,EAAE,8BAA8B,EAAE,qDAAqD,EAAE,oDAAoD,EAAE,yCAAyC,EAAE,8CAA8C,EAAE,kCAAkC,EAAE,uCAAuC,EAAE,iCAAiC,EAAE,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAChtB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAC7L,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;QAG9B;;;;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;;;;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;;;;WAIG;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"general_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/general_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,+BAA+B,EAAE,oCAAoC,EAAE,oBAAoB,EAAE,gCAAgC,EAAE,yBAAyB,EAAE,kCAAkC,EAAE,kBAAkB,EAAE,6BAA6B,EAAE,kCAAkC,EAAE,8BAA8B,EAAE,qDAAqD,EAAE,oDAAoD,EAAE,yCAAyC,EAAE,8CAA8C,EAAE,kCAAkC,EAAE,uCAAuC,EAAE,iCAAiC,EAAE,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAChtB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3M,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;QAG9B;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
@@ -336,7 +336,7 @@ export declare const ProjectsService: {
336
336
  */
337
337
  readonly viewStatistics: {
338
338
  readonly name: "ViewStatistics";
339
- readonly I: typeof Identifier;
339
+ readonly I: typeof IdentifierUUID;
340
340
  readonly O: typeof ProjectStatistics;
341
341
  readonly kind: MethodKind.Unary;
342
342
  };
@@ -514,7 +514,7 @@ export declare const PurchasesIndentsService: {
514
514
  */
515
515
  readonly viewOrderedStatistics: {
516
516
  readonly name: "ViewOrderedStatistics";
517
- readonly I: typeof Identifier;
517
+ readonly I: typeof IdentifierUUID;
518
518
  readonly O: typeof PurchaseIndentOrderedStatisticsList;
519
519
  readonly kind: MethodKind.Unary;
520
520
  };
@@ -1,5 +1,5 @@
1
1
  import { VendorStream, VendorStreamInternalSubscriber, VendorStreamInternalSubscribersList, VendorStreamMessage, VendorStreamMessageReceiptsList, VendorStreamMessagesList, VendorStreamMessagesSearchRequest, VendorStreamsList, VendorStreamsServiceCountReq, VendorStreamsServiceCreateRequest, VendorStreamsServiceFilterReq, VendorStreamsServiceImportInternalSubscribersRequest, VendorStreamsServiceInternalSubscriberCreateRequest, VendorStreamsServiceMessageCreateRequest, VendorStreamsServicePaginatedMessagesResponse, VendorStreamsServicePaginationReq, VendorStreamsServicePaginationResponse, VendorStreamsServiceSearchAllReq, VendorStreamsServiceUpdateRequest, VendorStreamsServiceVendorSubscriberCreateRequest, VendorStreamVendorSubscriber, VendorStreamVendorSubscribersList } from "./vendor_streams.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment, StandardFile } from "./base.scailo_pb.js";
3
3
  import { MethodKind } from "@bufbuild/protobuf";
4
4
  /**
5
5
  *
@@ -409,6 +409,18 @@ export declare const VendorStreamsService: {
409
409
  readonly O: typeof CountResponse;
410
410
  readonly kind: MethodKind.Unary;
411
411
  };
412
+ /**
413
+ * CSV operations
414
+ * Download the CSV file that consists of the list of records according to the given filter request
415
+ *
416
+ * @generated from rpc Scailo.VendorStreamsService.DownloadAsCSV
417
+ */
418
+ readonly downloadAsCSV: {
419
+ readonly name: "DownloadAsCSV";
420
+ readonly I: typeof VendorStreamsServiceFilterReq;
421
+ readonly O: typeof StandardFile;
422
+ readonly kind: MethodKind.Unary;
423
+ };
412
424
  };
413
425
  };
414
426
  //# sourceMappingURL=vendor_streams.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vendor_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/vendor_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAC7L,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"vendor_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/vendor_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3M,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
@@ -579,7 +579,7 @@ exports.ActivitiesService = {
579
579
  */
580
580
  viewStatistics: {
581
581
  name: "ViewStatistics",
582
- I: base_scailo_pb_js_1.Identifier,
582
+ I: base_scailo_pb_js_1.IdentifierUUID,
583
583
  O: activities_scailo_pb_js_1.ActivityStatistics,
584
584
  kind: protobuf_1.MethodKind.Unary,
585
585
  },
@@ -247,7 +247,7 @@ exports.ActivitiesGroupsService = {
247
247
  */
248
248
  viewStatistics: {
249
249
  name: "ViewStatistics",
250
- I: base_scailo_pb_js_1.Identifier,
250
+ I: base_scailo_pb_js_1.IdentifierUUID,
251
251
  O: activities_groups_scailo_pb_js_1.ActivityGroupStatistics,
252
252
  kind: protobuf_1.MethodKind.Unary,
253
253
  },
@@ -416,5 +416,17 @@ exports.ClientStreamsService = {
416
416
  O: base_scailo_pb_js_1.CountResponse,
417
417
  kind: protobuf_1.MethodKind.Unary,
418
418
  },
419
+ /**
420
+ * CSV operations
421
+ * Download the CSV file that consists of the list of records according to the given filter request
422
+ *
423
+ * @generated from rpc Scailo.ClientStreamsService.DownloadAsCSV
424
+ */
425
+ downloadAsCSV: {
426
+ name: "DownloadAsCSV",
427
+ I: client_streams_scailo_pb_js_1.ClientStreamsServiceFilterReq,
428
+ O: base_scailo_pb_js_1.StandardFile,
429
+ kind: protobuf_1.MethodKind.Unary,
430
+ },
419
431
  }
420
432
  };
@@ -372,5 +372,17 @@ exports.GeneralStreamsService = {
372
372
  O: base_scailo_pb_js_1.CountResponse,
373
373
  kind: protobuf_1.MethodKind.Unary,
374
374
  },
375
+ /**
376
+ * CSV operations
377
+ * Download the CSV file that consists of the list of records according to the given filter request
378
+ *
379
+ * @generated from rpc Scailo.GeneralStreamsService.DownloadAsCSV
380
+ */
381
+ downloadAsCSV: {
382
+ name: "DownloadAsCSV",
383
+ I: general_streams_scailo_pb_js_1.GeneralStreamsServiceFilterReq,
384
+ O: base_scailo_pb_js_1.StandardFile,
385
+ kind: protobuf_1.MethodKind.Unary,
386
+ },
375
387
  }
376
388
  };
@@ -343,7 +343,7 @@ exports.ProjectsService = {
343
343
  */
344
344
  viewStatistics: {
345
345
  name: "ViewStatistics",
346
- I: base_scailo_pb_js_1.Identifier,
346
+ I: base_scailo_pb_js_1.IdentifierUUID,
347
347
  O: projects_scailo_pb_js_1.ProjectStatistics,
348
348
  kind: protobuf_1.MethodKind.Unary,
349
349
  },
@@ -521,7 +521,7 @@ exports.PurchasesIndentsService = {
521
521
  */
522
522
  viewOrderedStatistics: {
523
523
  name: "ViewOrderedStatistics",
524
- I: base_scailo_pb_js_1.Identifier,
524
+ I: base_scailo_pb_js_1.IdentifierUUID,
525
525
  O: purchases_indents_scailo_pb_js_1.PurchaseIndentOrderedStatisticsList,
526
526
  kind: protobuf_1.MethodKind.Unary,
527
527
  },
@@ -416,5 +416,17 @@ exports.VendorStreamsService = {
416
416
  O: base_scailo_pb_js_1.CountResponse,
417
417
  kind: protobuf_1.MethodKind.Unary,
418
418
  },
419
+ /**
420
+ * CSV operations
421
+ * Download the CSV file that consists of the list of records according to the given filter request
422
+ *
423
+ * @generated from rpc Scailo.VendorStreamsService.DownloadAsCSV
424
+ */
425
+ downloadAsCSV: {
426
+ name: "DownloadAsCSV",
427
+ I: vendor_streams_scailo_pb_js_1.VendorStreamsServiceFilterReq,
428
+ O: base_scailo_pb_js_1.StandardFile,
429
+ kind: protobuf_1.MethodKind.Unary,
430
+ },
419
431
  }
420
432
  };
@@ -572,7 +572,7 @@ export declare const ActivitiesService: {
572
572
  */
573
573
  readonly viewStatistics: {
574
574
  readonly name: "ViewStatistics";
575
- readonly I: typeof Identifier;
575
+ readonly I: typeof IdentifierUUID;
576
576
  readonly O: typeof ActivityStatistics;
577
577
  readonly kind: MethodKind.Unary;
578
578
  };
@@ -240,7 +240,7 @@ export declare const ActivitiesGroupsService: {
240
240
  */
241
241
  readonly viewStatistics: {
242
242
  readonly name: "ViewStatistics";
243
- readonly I: typeof Identifier;
243
+ readonly I: typeof IdentifierUUID;
244
244
  readonly O: typeof ActivityGroupStatistics;
245
245
  readonly kind: MethodKind.Unary;
246
246
  };
@@ -1,5 +1,5 @@
1
1
  import { ClientStream, ClientStreamClientSubscriber, ClientStreamClientSubscribersList, ClientStreamInternalSubscriber, ClientStreamInternalSubscribersList, ClientStreamMessage, ClientStreamMessageReceiptsList, ClientStreamMessagesList, ClientStreamMessagesSearchRequest, ClientStreamsList, ClientStreamsServiceClientSubscriberCreateRequest, ClientStreamsServiceCountReq, ClientStreamsServiceCreateRequest, ClientStreamsServiceFilterReq, ClientStreamsServiceImportInternalSubscribersRequest, ClientStreamsServiceInternalSubscriberCreateRequest, ClientStreamsServiceMessageCreateRequest, ClientStreamsServicePaginatedMessagesResponse, ClientStreamsServicePaginationReq, ClientStreamsServicePaginationResponse, ClientStreamsServiceSearchAllReq, ClientStreamsServiceUpdateRequest } from "./client_streams.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment, StandardFile } from "./base.scailo_pb.js";
3
3
  import { MethodKind } from "@bufbuild/protobuf";
4
4
  /**
5
5
  *
@@ -409,6 +409,18 @@ export declare const ClientStreamsService: {
409
409
  readonly O: typeof CountResponse;
410
410
  readonly kind: MethodKind.Unary;
411
411
  };
412
+ /**
413
+ * CSV operations
414
+ * Download the CSV file that consists of the list of records according to the given filter request
415
+ *
416
+ * @generated from rpc Scailo.ClientStreamsService.DownloadAsCSV
417
+ */
418
+ readonly downloadAsCSV: {
419
+ readonly name: "DownloadAsCSV";
420
+ readonly I: typeof ClientStreamsServiceFilterReq;
421
+ readonly O: typeof StandardFile;
422
+ readonly kind: MethodKind.Unary;
423
+ };
412
424
  };
413
425
  };
414
426
  //# sourceMappingURL=client_streams.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"client_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/client_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAC7L,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"client_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/client_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3M,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import { GeneralStream, GeneralStreamInternalSubscriber, GeneralStreamInternalSubscribersList, GeneralStreamMessage, GeneralStreamMessageReceiptsList, GeneralStreamMessagesList, GeneralStreamMessagesSearchRequest, GeneralStreamsList, GeneralStreamsServiceCountReq, GeneralStreamsServiceCreateRequest, GeneralStreamsServiceFilterReq, GeneralStreamsServiceImportInternalSubscribersRequest, GeneralStreamsServiceInternalSubscriberCreateRequest, GeneralStreamsServiceMessageCreateRequest, GeneralStreamsServicePaginatedMessagesResponse, GeneralStreamsServicePaginationReq, GeneralStreamsServicePaginationResponse, GeneralStreamsServiceSearchAllReq, GeneralStreamsServiceUpdateRequest } from "./general_streams.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment, StandardFile } from "./base.scailo_pb.js";
3
3
  import { MethodKind } from "@bufbuild/protobuf";
4
4
  /**
5
5
  *
@@ -365,6 +365,18 @@ export declare const GeneralStreamsService: {
365
365
  readonly O: typeof CountResponse;
366
366
  readonly kind: MethodKind.Unary;
367
367
  };
368
+ /**
369
+ * CSV operations
370
+ * Download the CSV file that consists of the list of records according to the given filter request
371
+ *
372
+ * @generated from rpc Scailo.GeneralStreamsService.DownloadAsCSV
373
+ */
374
+ readonly downloadAsCSV: {
375
+ readonly name: "DownloadAsCSV";
376
+ readonly I: typeof GeneralStreamsServiceFilterReq;
377
+ readonly O: typeof StandardFile;
378
+ readonly kind: MethodKind.Unary;
379
+ };
368
380
  };
369
381
  };
370
382
  //# sourceMappingURL=general_streams.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"general_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/general_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,+BAA+B,EAAE,oCAAoC,EAAE,oBAAoB,EAAE,gCAAgC,EAAE,yBAAyB,EAAE,kCAAkC,EAAE,kBAAkB,EAAE,6BAA6B,EAAE,kCAAkC,EAAE,8BAA8B,EAAE,qDAAqD,EAAE,oDAAoD,EAAE,yCAAyC,EAAE,8CAA8C,EAAE,kCAAkC,EAAE,uCAAuC,EAAE,iCAAiC,EAAE,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAChtB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAC7L,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;QAG9B;;;;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;;;;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;;;;WAIG;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"general_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/general_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,aAAa,EAAE,+BAA+B,EAAE,oCAAoC,EAAE,oBAAoB,EAAE,gCAAgC,EAAE,yBAAyB,EAAE,kCAAkC,EAAE,kBAAkB,EAAE,6BAA6B,EAAE,kCAAkC,EAAE,8BAA8B,EAAE,qDAAqD,EAAE,oDAAoD,EAAE,yCAAyC,EAAE,8CAA8C,EAAE,kCAAkC,EAAE,uCAAuC,EAAE,iCAAiC,EAAE,kCAAkC,EAAE,MAAM,gCAAgC,CAAC;AAChtB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3M,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;QAG9B;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
@@ -336,7 +336,7 @@ export declare const ProjectsService: {
336
336
  */
337
337
  readonly viewStatistics: {
338
338
  readonly name: "ViewStatistics";
339
- readonly I: typeof Identifier;
339
+ readonly I: typeof IdentifierUUID;
340
340
  readonly O: typeof ProjectStatistics;
341
341
  readonly kind: MethodKind.Unary;
342
342
  };
@@ -514,7 +514,7 @@ export declare const PurchasesIndentsService: {
514
514
  */
515
515
  readonly viewOrderedStatistics: {
516
516
  readonly name: "ViewOrderedStatistics";
517
- readonly I: typeof Identifier;
517
+ readonly I: typeof IdentifierUUID;
518
518
  readonly O: typeof PurchaseIndentOrderedStatisticsList;
519
519
  readonly kind: MethodKind.Unary;
520
520
  };
@@ -1,5 +1,5 @@
1
1
  import { VendorStream, VendorStreamInternalSubscriber, VendorStreamInternalSubscribersList, VendorStreamMessage, VendorStreamMessageReceiptsList, VendorStreamMessagesList, VendorStreamMessagesSearchRequest, VendorStreamsList, VendorStreamsServiceCountReq, VendorStreamsServiceCreateRequest, VendorStreamsServiceFilterReq, VendorStreamsServiceImportInternalSubscribersRequest, VendorStreamsServiceInternalSubscriberCreateRequest, VendorStreamsServiceMessageCreateRequest, VendorStreamsServicePaginatedMessagesResponse, VendorStreamsServicePaginationReq, VendorStreamsServicePaginationResponse, VendorStreamsServiceSearchAllReq, VendorStreamsServiceUpdateRequest, VendorStreamsServiceVendorSubscriberCreateRequest, VendorStreamVendorSubscriber, VendorStreamVendorSubscribersList } from "./vendor_streams.scailo_pb.js";
2
- import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment } from "./base.scailo_pb.js";
2
+ import { ActiveStatus, CountResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, IdentifierWithUserComment, StandardFile } from "./base.scailo_pb.js";
3
3
  import { MethodKind } from "@bufbuild/protobuf";
4
4
  /**
5
5
  *
@@ -409,6 +409,18 @@ export declare const VendorStreamsService: {
409
409
  readonly O: typeof CountResponse;
410
410
  readonly kind: MethodKind.Unary;
411
411
  };
412
+ /**
413
+ * CSV operations
414
+ * Download the CSV file that consists of the list of records according to the given filter request
415
+ *
416
+ * @generated from rpc Scailo.VendorStreamsService.DownloadAsCSV
417
+ */
418
+ readonly downloadAsCSV: {
419
+ readonly name: "DownloadAsCSV";
420
+ readonly I: typeof VendorStreamsServiceFilterReq;
421
+ readonly O: typeof StandardFile;
422
+ readonly kind: MethodKind.Unary;
423
+ };
412
424
  };
413
425
  };
414
426
  //# sourceMappingURL=vendor_streams.scailo_connect.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vendor_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/vendor_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,MAAM,qBAAqB,CAAC;AAC7L,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
1
+ {"version":3,"file":"vendor_streams.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/vendor_streams.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,YAAY,EAAE,8BAA8B,EAAE,mCAAmC,EAAE,mBAAmB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,iCAAiC,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,oDAAoD,EAAE,mDAAmD,EAAE,wCAAwC,EAAE,6CAA6C,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,iDAAiD,EAAE,4BAA4B,EAAE,iCAAiC,EAAE,MAAM,+BAA+B,CAAC;AAChzB,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,yBAAyB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAC3M,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;;;;;;;WAOG;;;;;;;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;;;;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;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernelminds/scailo-sdk",
3
- "version": "0.0.84",
3
+ "version": "0.0.86",
4
4
  "description": "NPM module that provides access to Scailo's API",
5
5
  "types": "./lib/cjs/types/index.d.ts",
6
6
  "main": "./lib/cjs/index.js",