Fixed IModelsClient classes in both packages: made the _operationsOptions property protected. This makes it more convenient to extend the IModelsClient class as the user does not have to declare a duplicate property to persist operation options.
Re-exported NamedVersionOperations and CheckpointOperations classes from @itwin/imodels-client-authoring package. Those classes were missed in the exports because the authoring client does not extend them meaning that those operations are not exported by the imodels-client-authoring/src/operations/OperationExports.ts file. They were added to the package exports class explicitly.
In this PR:
IModelsClient
classes in both packages: made the_operationsOptions
property protected. This makes it more convenient to extend the IModelsClient class as the user does not have to declare a duplicate property to persist operation options.NamedVersionOperations
andCheckpointOperations
classes from@itwin/imodels-client-authoring
package. Those classes were missed in the exports because the authoring client does not extend them meaning that those operations are not exported by the imodels-client-authoring/src/operations/OperationExports.ts file. They were added to the package exports class explicitly.