@milaboratories/pl-client 3.4.1 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/dist/core/final.cjs.map +1 -1
  2. package/dist/core/final.js.map +1 -1
  3. package/dist/core/ll_client.cjs +7 -1
  4. package/dist/core/ll_client.cjs.map +1 -1
  5. package/dist/core/ll_client.d.ts.map +1 -1
  6. package/dist/core/ll_client.js +7 -1
  7. package/dist/core/ll_client.js.map +1 -1
  8. package/dist/core/ll_transaction.cjs +151 -26
  9. package/dist/core/ll_transaction.cjs.map +1 -1
  10. package/dist/core/ll_transaction.d.ts +1 -0
  11. package/dist/core/ll_transaction.d.ts.map +1 -1
  12. package/dist/core/ll_transaction.js +151 -26
  13. package/dist/core/ll_transaction.js.map +1 -1
  14. package/dist/core/transaction.cjs +89 -0
  15. package/dist/core/transaction.cjs.map +1 -1
  16. package/dist/core/transaction.d.ts +47 -1
  17. package/dist/core/transaction.d.ts.map +1 -1
  18. package/dist/core/transaction.js +90 -1
  19. package/dist/core/transaction.js.map +1 -1
  20. package/dist/core/tree_filter.cjs +106 -0
  21. package/dist/core/tree_filter.cjs.map +1 -0
  22. package/dist/core/tree_filter.d.ts +85 -0
  23. package/dist/core/tree_filter.d.ts.map +1 -0
  24. package/dist/core/tree_filter.js +106 -0
  25. package/dist/core/tree_filter.js.map +1 -0
  26. package/dist/core/type_conversion.cjs +1 -0
  27. package/dist/core/type_conversion.cjs.map +1 -1
  28. package/dist/core/type_conversion.js +1 -1
  29. package/dist/core/type_conversion.js.map +1 -1
  30. package/dist/index.cjs +5 -0
  31. package/dist/index.d.ts +4 -2
  32. package/dist/index.js +3 -1
  33. package/dist/proto-grpc/github.com/googleapis/googleapis/google/rpc/status.cjs.map +1 -1
  34. package/dist/proto-grpc/github.com/googleapis/googleapis/google/rpc/status.js.map +1 -1
  35. package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.cjs +450 -4
  36. package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.cjs.map +1 -1
  37. package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +328 -2
  38. package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
  39. package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.js +449 -5
  40. package/dist/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.js.map +1 -1
  41. package/dist/proto-grpc/google/protobuf/timestamp.cjs.map +1 -1
  42. package/dist/proto-grpc/google/protobuf/timestamp.d.ts +9 -8
  43. package/dist/proto-grpc/google/protobuf/timestamp.d.ts.map +1 -1
  44. package/dist/proto-grpc/google/protobuf/timestamp.js.map +1 -1
  45. package/dist/proto-grpc/google/rpc/code.cjs.map +1 -1
  46. package/dist/proto-grpc/google/rpc/code.js.map +1 -1
  47. package/package.json +5 -5
  48. package/src/core/final.ts +1 -1
  49. package/src/core/ll_client.ts +11 -1
  50. package/src/core/ll_transaction.test.ts +13 -18
  51. package/src/core/ll_transaction.ts +237 -60
  52. package/src/core/transaction.test.ts +38 -0
  53. package/src/core/transaction.ts +136 -1
  54. package/src/core/tree_filter.test.ts +217 -0
  55. package/src/core/tree_filter.ts +182 -0
  56. package/src/core/type_conversion.ts +1 -1
  57. package/src/index.ts +1 -0
  58. package/src/proto-grpc/github.com/googleapis/googleapis/google/rpc/status.ts +1 -1
  59. package/src/proto-grpc/github.com/milaboratory/pl/plapi/plapiproto/api.ts +604 -6
  60. package/src/proto-grpc/google/api/http.ts +1 -1
  61. package/src/proto-grpc/google/protobuf/descriptor.ts +242 -12
  62. package/src/proto-grpc/google/protobuf/timestamp.ts +9 -8
  63. package/src/proto-grpc/google/protobuf/wrappers.ts +38 -4
  64. package/src/proto-grpc/google/rpc/code.ts +1 -1
  65. package/src/proto-grpc/google/rpc/error_details.ts +5 -5
  66. package/src/proto-grpc/google/rpc/http.ts +1 -1
  67. package/src/proto-grpc/google/rpc/status.ts +1 -1
@@ -1437,6 +1437,242 @@ interface ResourceAPI_Tree_Request {
1437
1437
  * @generated from protobuf field: optional uint32 max_depth = 2
1438
1438
  */
1439
1439
  maxDepth?: number;
1440
+ /**
1441
+ * Optional per-(resource, field) filter. Unset / nil means
1442
+ * "keep all fields" (current Tree behavior). Servers advertise
1443
+ * support via "treeFilter:v1" in
1444
+ * MaintenanceAPI.Ping.Response.capabilities; old servers ignore this
1445
+ * field.
1446
+ *
1447
+ * If a field matches the predicate, the traversal does not descend
1448
+ * into that field's value.
1449
+ *
1450
+ * Only one filter is accepted. Compose multiple rules into a single
1451
+ * predicate via AND/OR/NOT groups.
1452
+ *
1453
+ * @generated from protobuf field: optional MiLaboratories.PL.API.ResourceAPI.Tree.Filter field_filter = 5
1454
+ */
1455
+ fieldFilter?: ResourceAPI_Tree_Filter;
1456
+ /**
1457
+ * If true, the response carries per-resource key-values alongside
1458
+ * each visited resource. Defaults to false. Old servers ignore this
1459
+ * field and never populate Response.kv.
1460
+ *
1461
+ * @generated from protobuf field: bool include_kv = 6
1462
+ */
1463
+ includeKv: boolean;
1464
+ /**
1465
+ * Optional predicate evaluated at the resource (not field) level.
1466
+ * When set, the traversal does not descend into child resources that do not
1467
+ * satisfy the predicate but resource still returns in the response.
1468
+ *
1469
+ * Each Tree.Response carries traverse_was_stopped=true if this
1470
+ * resource satisfies the predicate.
1471
+ *
1472
+ * Available properties: resource_type (string), is_final (bool),
1473
+ * resource_ready (bool), has_errors (bool), inputs_locked (bool),
1474
+ * outputs_locked (bool). Old servers ignore this field and never
1475
+ * set traverse_was_stopped.
1476
+ *
1477
+ * @generated from protobuf field: optional MiLaboratories.PL.API.ResourceAPI.Tree.Filter traverse_stop_rules = 7
1478
+ */
1479
+ traverseStopRules?: ResourceAPI_Tree_Filter;
1480
+ /**
1481
+ * Optional alternative entry points for multi-root traversal.
1482
+ * When non-empty, the traversal starts from each listed seed instead
1483
+ * of resource_id. Servers advertise support via "treeSeeds:v1" in
1484
+ * MaintenanceAPI.Ping.Response.capabilities; old servers ignore this
1485
+ * field. resource_id is used as the sole root when seeds is empty.
1486
+ *
1487
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceAPI.Tree.SeedResource seeds = 8
1488
+ */
1489
+ seeds: ResourceAPI_Tree_SeedResource[];
1490
+ }
1491
+ /**
1492
+ * A single entry point for multi-root tree traversal.
1493
+ *
1494
+ * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.SeedResource
1495
+ */
1496
+ interface ResourceAPI_Tree_SeedResource {
1497
+ /**
1498
+ * @generated from protobuf field: uint64 resource_id = 1
1499
+ */
1500
+ resourceId: bigint;
1501
+ /**
1502
+ * @generated from protobuf field: bytes resource_signature = 2
1503
+ */
1504
+ resourceSignature: Uint8Array;
1505
+ }
1506
+ /**
1507
+ * Filter applied to each visited resource's fields during the walk.
1508
+ * The filter is evaluated per (resource, field) pair. If the property
1509
+ * specified by `key` matches the `value` according to the `operator`,
1510
+ * the field is kept; otherwise, it is dropped. A dropped field is not
1511
+ * descended into. Resources are always emitted; when all of a resource's
1512
+ * fields are dropped, descent stops naturally.
1513
+ * Filter evaluated per (resource, field) pair.
1514
+ *
1515
+ * Leaf filter (EQUAL/NOT_EQUAL/MATCH/NOT_MATCH): key is required and
1516
+ * selects which property to test; value carries the expected scalar.
1517
+ *
1518
+ * Composite filter (OR/AND/NOT): key is absent, filters_value carries
1519
+ * sub-filters combined with the chosen operator. OR/AND/NOT may be nested
1520
+ * arbitrarily. Top-level filters (in Tree.Request.filters) are AND-combined.
1521
+ * NOT requires exactly one sub-filter. Dropped fields are not descended into.
1522
+ *
1523
+ * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.Filter
1524
+ */
1525
+ interface ResourceAPI_Tree_Filter {
1526
+ /**
1527
+ * Required for leaf operators (EQUAL/MATCH).
1528
+ * Absent when operator == OR, AND, or NOT.
1529
+ *
1530
+ * @generated from protobuf field: optional MiLaboratories.PL.API.ResourceAPI.Tree.Filter.Property key = 1
1531
+ */
1532
+ key?: ResourceAPI_Tree_Filter_Property;
1533
+ /**
1534
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Filter.OperatorType operator = 2
1535
+ */
1536
+ operator: ResourceAPI_Tree_Filter_OperatorType;
1537
+ /**
1538
+ * @generated from protobuf oneof: value
1539
+ */
1540
+ value: {
1541
+ oneofKind: "boolValue";
1542
+ /**
1543
+ * @generated from protobuf field: bool bool_value = 3
1544
+ */
1545
+ boolValue: boolean;
1546
+ } | {
1547
+ oneofKind: "stringValue";
1548
+ /**
1549
+ * @generated from protobuf field: string string_value = 4
1550
+ */
1551
+ stringValue: string;
1552
+ } | {
1553
+ oneofKind: "filtersValue";
1554
+ /**
1555
+ * Used when operator == OR, AND, or NOT.
1556
+ *
1557
+ * @generated from protobuf field: MiLaboratories.PL.API.ResourceAPI.Tree.Filter.FilterGroup filters_value = 5
1558
+ */
1559
+ filtersValue: ResourceAPI_Tree_Filter_FilterGroup;
1560
+ } | {
1561
+ oneofKind: undefined;
1562
+ };
1563
+ }
1564
+ /**
1565
+ * Wrapper for repeated Filter (oneof cannot contain repeated fields directly).
1566
+ *
1567
+ * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.Filter.FilterGroup
1568
+ */
1569
+ interface ResourceAPI_Tree_Filter_FilterGroup {
1570
+ /**
1571
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceAPI.Tree.Filter filters = 1
1572
+ */
1573
+ filters: ResourceAPI_Tree_Filter[];
1574
+ }
1575
+ /**
1576
+ * @generated from protobuf enum MiLaboratories.PL.API.ResourceAPI.Tree.Filter.OperatorType
1577
+ */
1578
+ declare enum ResourceAPI_Tree_Filter_OperatorType {
1579
+ /**
1580
+ * @generated from protobuf enum value: UNSPECIFIED = 0;
1581
+ */
1582
+ UNSPECIFIED = 0,
1583
+ /**
1584
+ * @generated from protobuf enum value: EQUAL = 1;
1585
+ */
1586
+ EQUAL = 1,
1587
+ /**
1588
+ * @generated from protobuf enum value: MATCH = 2;
1589
+ */
1590
+ MATCH = 2,
1591
+ /**
1592
+ * @generated from protobuf enum value: OR = 3;
1593
+ */
1594
+ OR = 3,
1595
+ /**
1596
+ * @generated from protobuf enum value: AND = 4;
1597
+ */
1598
+ AND = 4,
1599
+ /**
1600
+ * @generated from protobuf enum value: NOT = 5;
1601
+ */
1602
+ NOT = 5
1603
+ }
1604
+ /**
1605
+ * @generated from protobuf enum MiLaboratories.PL.API.ResourceAPI.Tree.Filter.Property
1606
+ */
1607
+ declare enum ResourceAPI_Tree_Filter_Property {
1608
+ /**
1609
+ * @generated from protobuf enum value: FIELD_NAME = 0;
1610
+ */
1611
+ FIELD_NAME = 0,
1612
+ /**
1613
+ * @generated from protobuf enum value: RESOURCE_TYPE = 1;
1614
+ */
1615
+ RESOURCE_TYPE = 1,
1616
+ /**
1617
+ * Status().IsFinal(): true when status is Original, Duplicate, or Error.
1618
+ * Does NOT require AllInputsFinal — a resource with unresolved input fields
1619
+ * can still report IS_FINAL=true if its own status is terminal. Use
1620
+ * RESOURCE_READY_FOR_CALCULATION + IS_DUPLICATE + HAS_ERRORS to mirror the
1621
+ * client-side readyOrDuplicateOrError predicate precisely.
1622
+ *
1623
+ * @generated from protobuf enum value: IS_FINAL = 2;
1624
+ */
1625
+ IS_FINAL = 2,
1626
+ /**
1627
+ * Evaluated per resource node (traverse_stop_rules only). True when every non-error
1628
+ * output field has a final value. Matches the TypeScript readyAndHasAllOutputsFilled check.
1629
+ *
1630
+ * @generated from protobuf enum value: ALL_OUTPUTS_FINAL = 3;
1631
+ */
1632
+ ALL_OUTPUTS_FINAL = 3,
1633
+ /**
1634
+ * IsReadyForCalculation(): Status==Original AND AllInputsFinal AND no input errors AND IO feature.
1635
+ * Mirrors the client-side r.resourceReady property used in readyOrDuplicateOrError.
1636
+ *
1637
+ * @generated from protobuf enum value: RESOURCE_READY_FOR_CALCULATION = 4;
1638
+ */
1639
+ RESOURCE_READY_FOR_CALCULATION = 4,
1640
+ /**
1641
+ * True when status is Duplicate (original_resource_id != 0). Mirrors the
1642
+ * isNotNullSignedResourceId(r.originalResourceId) branch of readyOrDuplicateOrError.
1643
+ *
1644
+ * @generated from protobuf enum value: IS_DUPLICATE = 5;
1645
+ */
1646
+ IS_DUPLICATE = 5,
1647
+ /**
1648
+ * True when the resource has at least one field carrying an error
1649
+ * (aggregated has-error flag). Mirrors the isNotNullSignedResourceId(r.error)
1650
+ * branch of readyOrDuplicateOrError. Note: this can be true even when the
1651
+ * resource's own status is not Error (e.g., an Original resource with a
1652
+ * failed input field).
1653
+ *
1654
+ * @generated from protobuf enum value: HAS_ERRORS = 6;
1655
+ */
1656
+ HAS_ERRORS = 6,
1657
+ /**
1658
+ * True when no further output fields can be added to the resource.
1659
+ *
1660
+ * @generated from protobuf enum value: OUTPUTS_LOCKED = 7;
1661
+ */
1662
+ OUTPUTS_LOCKED = 7
1663
+ }
1664
+ /**
1665
+ * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.KV
1666
+ */
1667
+ interface ResourceAPI_Tree_KV {
1668
+ /**
1669
+ * @generated from protobuf field: string key = 1
1670
+ */
1671
+ key: string;
1672
+ /**
1673
+ * @generated from protobuf field: bytes value = 2
1674
+ */
1675
+ value: Uint8Array;
1440
1676
  }
1441
1677
  /**
1442
1678
  * Multi-message
@@ -1445,9 +1681,44 @@ interface ResourceAPI_Tree_Request {
1445
1681
  */
1446
1682
  interface ResourceAPI_Tree_Response {
1447
1683
  /**
1448
- * @generated from protobuf field: MiLaboratories.PL.API.Resource resource = 1
1684
+ * Full resource payload. Absent on stop-marker frames (when the server
1685
+ * advertises `treeStopMarker:v1` and traverse_was_stopped is true).
1686
+ * Always populated on normal frames.
1687
+ *
1688
+ * @generated from protobuf field: optional MiLaboratories.PL.API.Resource resource = 1
1449
1689
  */
1450
1690
  resource?: Resource;
1691
+ /**
1692
+ * Populated only when include_kv=true in the request.
1693
+ *
1694
+ * @generated from protobuf field: repeated MiLaboratories.PL.API.ResourceAPI.Tree.KV kv = 2
1695
+ */
1696
+ kv: ResourceAPI_Tree_KV[];
1697
+ /**
1698
+ * True when the request specified a traverse_stop_rules and this resource
1699
+ * satisfied it. Always false when traverse_stop_rules was absent.
1700
+ *
1701
+ * When the server advertises `treeStopMarker:v1`, a stop-marker frame has
1702
+ * traverse_was_stopped=true with resource unset; resource_id and
1703
+ * resource_signature carry the identity of the stopped node instead.
1704
+ * On normal frames (traverse_was_stopped=false or server without the
1705
+ * capability) resource is always populated and resource_id/resource_signature
1706
+ * are zero/empty.
1707
+ *
1708
+ * @generated from protobuf field: bool traverse_was_stopped = 3
1709
+ */
1710
+ traverseWasStopped: boolean;
1711
+ /**
1712
+ * Populated only on stop-marker frames (resource is unset).
1713
+ * Zero / empty on normal frames; use resource.resource_id instead.
1714
+ *
1715
+ * @generated from protobuf field: uint64 resource_id = 4
1716
+ */
1717
+ resourceId: bigint;
1718
+ /**
1719
+ * @generated from protobuf field: bytes resource_signature = 5
1720
+ */
1721
+ resourceSignature: Uint8Array;
1451
1722
  }
1452
1723
  /**
1453
1724
  * @generated from protobuf message MiLaboratories.PL.API.ResourceAPI.TreeSize.Request
@@ -2997,6 +3268,21 @@ interface MaintenanceAPI_Ping_Response {
2997
3268
  * @generated from protobuf field: string arch = 8
2998
3269
  */
2999
3270
  arch: string;
3271
+ /**
3272
+ * Opt-in capabilities advertised by this server instance, used by
3273
+ * clients to pick between fast and fallback code paths without waiting
3274
+ * for a failed RPC.
3275
+ *
3276
+ * Each entry is an opaque token "<feature>:<version>" (e.g.
3277
+ * "loadSubtree:v1"). Unrecognized tokens are ignored by the client.
3278
+ * The field is unset on servers predating this mechanism, which the
3279
+ * client treats as "no optional capabilities advertised".
3280
+ *
3281
+ * All list see pl/platform/api/plapiserver/server_capabilities.go
3282
+ *
3283
+ * @generated from protobuf field: repeated string capabilities = 9
3284
+ */
3285
+ capabilities: string[];
3000
3286
  }
3001
3287
  /**
3002
3288
  * @generated from protobuf enum MiLaboratories.PL.API.MaintenanceAPI.Ping.Response.Compression
@@ -3578,6 +3864,46 @@ declare class ResourceAPI_Tree_Request$Type extends MessageType<ResourceAPI_Tree
3578
3864
  * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.Request
3579
3865
  */
3580
3866
  declare const ResourceAPI_Tree_Request: ResourceAPI_Tree_Request$Type;
3867
+ declare class ResourceAPI_Tree_SeedResource$Type extends MessageType<ResourceAPI_Tree_SeedResource> {
3868
+ constructor();
3869
+ create(value?: PartialMessage<ResourceAPI_Tree_SeedResource>): ResourceAPI_Tree_SeedResource;
3870
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_Tree_SeedResource): ResourceAPI_Tree_SeedResource;
3871
+ internalBinaryWrite(message: ResourceAPI_Tree_SeedResource, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3872
+ }
3873
+ /**
3874
+ * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.SeedResource
3875
+ */
3876
+ declare const ResourceAPI_Tree_SeedResource: ResourceAPI_Tree_SeedResource$Type;
3877
+ declare class ResourceAPI_Tree_Filter$Type extends MessageType<ResourceAPI_Tree_Filter> {
3878
+ constructor();
3879
+ create(value?: PartialMessage<ResourceAPI_Tree_Filter>): ResourceAPI_Tree_Filter;
3880
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_Tree_Filter): ResourceAPI_Tree_Filter;
3881
+ internalBinaryWrite(message: ResourceAPI_Tree_Filter, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3882
+ }
3883
+ /**
3884
+ * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.Filter
3885
+ */
3886
+ declare const ResourceAPI_Tree_Filter: ResourceAPI_Tree_Filter$Type;
3887
+ declare class ResourceAPI_Tree_Filter_FilterGroup$Type extends MessageType<ResourceAPI_Tree_Filter_FilterGroup> {
3888
+ constructor();
3889
+ create(value?: PartialMessage<ResourceAPI_Tree_Filter_FilterGroup>): ResourceAPI_Tree_Filter_FilterGroup;
3890
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_Tree_Filter_FilterGroup): ResourceAPI_Tree_Filter_FilterGroup;
3891
+ internalBinaryWrite(message: ResourceAPI_Tree_Filter_FilterGroup, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3892
+ }
3893
+ /**
3894
+ * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.Filter.FilterGroup
3895
+ */
3896
+ declare const ResourceAPI_Tree_Filter_FilterGroup: ResourceAPI_Tree_Filter_FilterGroup$Type;
3897
+ declare class ResourceAPI_Tree_KV$Type extends MessageType<ResourceAPI_Tree_KV> {
3898
+ constructor();
3899
+ create(value?: PartialMessage<ResourceAPI_Tree_KV>): ResourceAPI_Tree_KV;
3900
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ResourceAPI_Tree_KV): ResourceAPI_Tree_KV;
3901
+ internalBinaryWrite(message: ResourceAPI_Tree_KV, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
3902
+ }
3903
+ /**
3904
+ * @generated MessageType for protobuf message MiLaboratories.PL.API.ResourceAPI.Tree.KV
3905
+ */
3906
+ declare const ResourceAPI_Tree_KV: ResourceAPI_Tree_KV$Type;
3581
3907
  declare class ResourceAPI_Tree_Response$Type extends MessageType<ResourceAPI_Tree_Response> {
3582
3908
  constructor();
3583
3909
  create(value?: PartialMessage<ResourceAPI_Tree_Response>): ResourceAPI_Tree_Response;
@@ -4853,5 +5179,5 @@ declare class Util_Deprecated$Type extends MessageType<Util_Deprecated> {
4853
5179
  */
4854
5180
  declare const Util_Deprecated: Util_Deprecated$Type;
4855
5181
  //#endregion
4856
- export { AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response, AuthAPI_GetSessionInfo_Request, AuthAPI_GetSessionInfo_Response, AuthAPI_GetUserRoot_Request, AuthAPI_GetUserRoot_Response, AuthAPI_GrantAccess_Request, AuthAPI_GrantAccess_Response, AuthAPI_ListGrants_Request, AuthAPI_ListGrants_Response, AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response, AuthAPI_ListUserResources_Request, AuthAPI_ListUserResources_Response, AuthAPI_MintSignature_Request, AuthAPI_MintSignature_Response, AuthAPI_RevokeAccess_Request, AuthAPI_RevokeAccess_Response, AuthAPI_Role, ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response, ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response, ControllerAPI_Create_Request, ControllerAPI_Create_Response, ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response, ControllerAPI_Exists_Request, ControllerAPI_Exists_Response, ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response, ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response, ControllerAPI_Get_Request, ControllerAPI_Get_Response, ControllerAPI_Register_Request, ControllerAPI_Register_Response, ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response, ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response, ControllerAPI_Update_Request, ControllerAPI_Update_Response, ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response, LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response, LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response, LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response, LocksAPI_LockFieldValues_Create_Request, LocksAPI_LockFieldValues_Create_Response, MaintenanceAPI_License_Request, MaintenanceAPI_License_Response, MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response, MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response, NotificationAPI_Get_Request, NotificationAPI_Get_Response, SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response, SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response, TxAPI_ClientMessage, TxAPI_ServerMessage, TxAPI_Sync_Request, TxAPI_Sync_Response };
5182
+ export { AuthAPI_GetJWTToken_Request, AuthAPI_GetJWTToken_Response, AuthAPI_GetSessionInfo_Request, AuthAPI_GetSessionInfo_Response, AuthAPI_GetUserRoot_Request, AuthAPI_GetUserRoot_Response, AuthAPI_GrantAccess_Request, AuthAPI_GrantAccess_Response, AuthAPI_ListGrants_Request, AuthAPI_ListGrants_Response, AuthAPI_ListMethods_Request, AuthAPI_ListMethods_Response, AuthAPI_ListUserResources_Request, AuthAPI_ListUserResources_Response, AuthAPI_MintSignature_Request, AuthAPI_MintSignature_Response, AuthAPI_RevokeAccess_Request, AuthAPI_RevokeAccess_Response, AuthAPI_Role, ControllerAPI_AttachSubscription_Request, ControllerAPI_AttachSubscription_Response, ControllerAPI_ClearFeatures_Request, ControllerAPI_ClearFeatures_Response, ControllerAPI_Create_Request, ControllerAPI_Create_Response, ControllerAPI_Deregister_Request, ControllerAPI_Deregister_Response, ControllerAPI_Exists_Request, ControllerAPI_Exists_Response, ControllerAPI_GetNotifications_Request, ControllerAPI_GetNotifications_Response, ControllerAPI_GetUrl_Request, ControllerAPI_GetUrl_Response, ControllerAPI_Get_Request, ControllerAPI_Get_Response, ControllerAPI_Register_Request, ControllerAPI_Register_Response, ControllerAPI_RemoveAliasesAndUrls_Request, ControllerAPI_RemoveAliasesAndUrls_Response, ControllerAPI_SetFeatures_Request, ControllerAPI_SetFeatures_Response, ControllerAPI_Update_Request, ControllerAPI_Update_Response, ControllerAPI_WriteAliasesAndUrls_Request, ControllerAPI_WriteAliasesAndUrls_Response, LocksAPI_Lease_Create_Request, LocksAPI_Lease_Create_Response, LocksAPI_Lease_Release_Request, LocksAPI_Lease_Release_Response, LocksAPI_Lease_Update_Request, LocksAPI_Lease_Update_Response, LocksAPI_LockFieldValues_Create_Request, LocksAPI_LockFieldValues_Create_Response, MaintenanceAPI_License_Request, MaintenanceAPI_License_Response, MaintenanceAPI_Ping_Request, MaintenanceAPI_Ping_Response, MiscAPI_ListResourceTypes_Request, MiscAPI_ListResourceTypes_Response, NotificationAPI_Get_Request, NotificationAPI_Get_Response, ResourceAPI_Tree_Filter, ResourceAPI_Tree_Filter_OperatorType, ResourceAPI_Tree_Filter_Property, SubscriptionAPI_AttachFilter_Request, SubscriptionAPI_AttachFilter_Response, SubscriptionAPI_DetachFilter_Request, SubscriptionAPI_DetachFilter_Response, TxAPI_ClientMessage, TxAPI_ServerMessage, TxAPI_Sync_Request, TxAPI_Sync_Response };
4857
5183
  //# sourceMappingURL=api.d.ts.map