@kernelminds/scailo-sdk 0.1.24 → 0.1.26
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/magic_links.scailo_pb.js +35 -0
- package/lib/cjs/src/qc_samples.scailo_connect.js +12 -1
- package/lib/cjs/src/qc_samples.scailo_pb.js +37 -1
- package/lib/cjs/src/users.scailo_connect.js +11 -0
- package/lib/cjs/src/visitations.scailo_connect.js +22 -0
- package/lib/cjs/types/src/magic_links.scailo_pb.d.ts +31 -1
- package/lib/cjs/types/src/magic_links.scailo_pb.d.ts.map +1 -1
- package/lib/cjs/types/src/qc_samples.scailo_connect.d.ts +13 -2
- package/lib/cjs/types/src/qc_samples.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/qc_samples.scailo_pb.d.ts +22 -0
- package/lib/cjs/types/src/qc_samples.scailo_pb.d.ts.map +1 -1
- package/lib/cjs/types/src/users.scailo_connect.d.ts +11 -0
- package/lib/cjs/types/src/users.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/visitations.scailo_connect.d.ts +23 -1
- package/lib/cjs/types/src/visitations.scailo_connect.d.ts.map +1 -1
- package/lib/esm/src/magic_links.scailo_pb.js +35 -0
- package/lib/esm/src/qc_samples.scailo_connect.js +12 -1
- package/lib/esm/src/qc_samples.scailo_pb.js +37 -1
- package/lib/esm/src/users.scailo_connect.js +11 -0
- package/lib/esm/src/visitations.scailo_connect.js +22 -0
- package/lib/esm/types/src/magic_links.scailo_pb.d.ts +31 -1
- package/lib/esm/types/src/magic_links.scailo_pb.d.ts.map +1 -1
- package/lib/esm/types/src/qc_samples.scailo_connect.d.ts +13 -2
- package/lib/esm/types/src/qc_samples.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/qc_samples.scailo_pb.d.ts +22 -0
- package/lib/esm/types/src/qc_samples.scailo_pb.d.ts.map +1 -1
- package/lib/esm/types/src/users.scailo_connect.d.ts +11 -0
- package/lib/esm/types/src/users.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/visitations.scailo_connect.d.ts +23 -1
- package/lib/esm/types/src/visitations.scailo_connect.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Visitation, VisitationsList, VisitationsServiceCountReq, VisitationsServiceCreateRequest, VisitationsServiceFilterReq, VisitationsServiceImageEntryRequest, VisitationsServiceImageExitRequest, VisitationsServicePaginationReq, VisitationsServicePaginationResponse, VisitationsServiceSearchAllReq, VisitationsServiceUpdateRequest } from "./visitations.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, CountInSLCStatusRequest, CountResponse, GPSCoordinatesResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, ImageResponse, StandardFile } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, BooleanResponse, CountInSLCStatusRequest, CountResponse, GPSCoordinatesResponse, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithUserComment, ImageResponse, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
import { MagicLink, MagicLinksServiceCreateRequestForSpecificResource } from "./magic_links.scailo_pb.js";
|
|
5
5
|
/**
|
|
@@ -365,6 +365,17 @@ export declare const VisitationsService: {
|
|
|
365
365
|
readonly O: typeof ImageResponse;
|
|
366
366
|
readonly kind: MethodKind.Unary;
|
|
367
367
|
};
|
|
368
|
+
/**
|
|
369
|
+
* View the open visitation for an associate (with the given identifier), if available. Returns an empty instance if no visitation is available
|
|
370
|
+
*
|
|
371
|
+
* @generated from rpc Scailo.VisitationsService.ViewOpenVisitationForAssociate
|
|
372
|
+
*/
|
|
373
|
+
readonly viewOpenVisitationForAssociate: {
|
|
374
|
+
readonly name: "ViewOpenVisitationForAssociate";
|
|
375
|
+
readonly I: typeof Identifier;
|
|
376
|
+
readonly O: typeof Visitation;
|
|
377
|
+
readonly kind: MethodKind.Unary;
|
|
378
|
+
};
|
|
368
379
|
/**
|
|
369
380
|
* View all that match the given search key
|
|
370
381
|
*
|
|
@@ -387,6 +398,17 @@ export declare const VisitationsService: {
|
|
|
387
398
|
readonly O: typeof VisitationsList;
|
|
388
399
|
readonly kind: MethodKind.Unary;
|
|
389
400
|
};
|
|
401
|
+
/**
|
|
402
|
+
* Checks if an associate (with the given identifier) has an open visitation (visitation with only entry and no exit)
|
|
403
|
+
*
|
|
404
|
+
* @generated from rpc Scailo.VisitationsService.AssociateHasOpenVisitation
|
|
405
|
+
*/
|
|
406
|
+
readonly associateHasOpenVisitation: {
|
|
407
|
+
readonly name: "AssociateHasOpenVisitation";
|
|
408
|
+
readonly I: typeof Identifier;
|
|
409
|
+
readonly O: typeof BooleanResponse;
|
|
410
|
+
readonly kind: MethodKind.Unary;
|
|
411
|
+
};
|
|
390
412
|
/**
|
|
391
413
|
* Count in status
|
|
392
414
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"visitations.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/visitations.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,0BAA0B,EAAE,+BAA+B,EAAE,2BAA2B,EAAE,mCAAmC,EAAE,kCAAkC,EAAE,+BAA+B,EAAE,oCAAoC,EAAE,8BAA8B,EAAE,+BAA+B,EAAE,MAAM,4BAA4B,CAAC;AACpX,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,sBAAsB,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"visitations.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/visitations.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,0BAA0B,EAAE,+BAA+B,EAAE,2BAA2B,EAAE,mCAAmC,EAAE,kCAAkC,EAAE,+BAA+B,EAAE,oCAAoC,EAAE,8BAA8B,EAAE,+BAA+B,EAAE,MAAM,4BAA4B,CAAC;AACpX,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,uBAAuB,EAAE,aAAa,EAAE,sBAAsB,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,6BAA6B,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACjQ,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,iDAAiD,EAAE,MAAM,4BAA4B,CAAC;AAE1G;;;;;GAKG;AACH,eAAO,MAAM,kBAAkB;;;QAG3B;;;;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;;;;;;WAMG;;;;;;;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"}
|