Dibix.Sdk
1.2.5
See the version list below for details.
dotnet add package Dibix.Sdk --version 1.2.5
NuGet\Install-Package Dibix.Sdk -Version 1.2.5
<PackageReference Include="Dibix.Sdk" Version="1.2.5" />
paket add Dibix.Sdk --version 1.2.5
#r "nuget: Dibix.Sdk, 1.2.5"
// Install Dibix.Sdk as a Cake Addin #addin nuget:?package=Dibix.Sdk&version=1.2.5 // Install Dibix.Sdk as a Cake Tool #tool nuget:?package=Dibix.Sdk&version=1.2.5
Dibix
Seamlessly create use case oriented REST APIs based on T-SQL stored procedures.
Packages
Package | NuGet |
---|---|
Dibix | |
Dibix.Dapper | |
Dibix.Http.Client | |
Dibix.Http.Server | |
Dibix.Sdk | |
Dibix.Testing |
Background
The aim of Dibix is to rapidly create use case oriented REST APIs without writing any boilerplate code, unlike the general approach of designing ASP<span>.</span>NET APIs by writing controllers and actions. It strictly focuses on a hand-written T-SQL stored procedure, which is described with a bit of metadata markup. The APIs and contracts involved are specified in a declarative JSON format. Basically, each URL defined in an API endpoint results in invoking the SQL stored procedure, materializing the relational result into a hierarchical result and then return that to the client.
Getting started
Creating a project
Dibix follows a database first approach therefore most of the work is done in a SQL server database project. This is where you create use case oriented stored procedures which will later turn into working REST APIs.<br/> We currently offer to split your artifacts into two separate projects:
- Component.Database (DDL)<br/> Contains DDL (Data definition language).<br/> We consider this the default behavior of a database project, where tables, stored procedures, etc. are defined and its intention is to publish these database artifacts to the target database at some point.
- Component.Database.DML (DML)<br/> Contains DML (Data manipulation language).<br/> This project should contain only stored procedures. These will not be published to the target database and instead their statement body will be extracted and compiled into an assembly.
Since DDL gets published at the target database, this means that basically any simple T-SQL statement will end up inside a stored procedure. So far we don't have an exact idea if this is good or bad. The advantage of DDL over DML is that DDL can be easily devop'd at the customer site using SSMS, whereas the DML is compiled into an assembly and therefore harder to patch, especially during development.
Configuring the project
Dibix provides MSBuild targets to integrate it seamlessly into the database project build pipeline. The idea is to install the Dibix.Sdk NuGet package into your project, which will automatically add the necessary imports.<br/> Unfortunately NuGet is not supported in database projects (yet?). Therefore the import has to happen manually. Please check if there is any existing documentation in the product you are working on or ask me for assistance.
Creating a REST API
In this walkthrough, we try to create the following endpoints, that make up a RESTful API:<br /> | Number | Method | URL | Description | | - | - | - | - | | GetPersons | GET | api/Person|Get a list of persons | | GetPerson | GET | api/Person/{personId} | Get details of a person | | CreatePerson | POST | api/Person | Create a person | | UpdatePerson | PUT | api/Person/{personId} | Update a person | | UpdatePersonName | PATCH | api/Person/{personId}/Name | Update the name of a person (partial update) | | DeletePersons | DELETE | api/Person?personIds={personIds} | Delete multiple persons |
Contracts
- Ensure, that there is a folder named "Contracts" at the root of the project
- Create a new .json file named "Person.json" with the following content:
{
"AccessRights": [
{ "Read": 1 },
{ "Write": 2 },
{ "Execute": 4 }
],
"Gender": [
"Unsure",
"Male",
"Female"
],
"BankAccount": {
"Id": "uuid",
"Name": "string"
},
"PersonInfo": {
"Id": {
"type": "int32",
"isPartOfKey": "true"
},
"Name": "string"
},
"PersonDetail": {
"Id": {
"type": "int32",
"isPartOfKey": "true"
},
"Name": "string",
"Gender": "#Gender",
"AccessRights": "#AccessRights",
"BankAccounts": "#BankAccounts*",
"PetId": "int64?"
},
"CreatePersonRequest": {
"Name": "string",
"Gender": "#Gender",
"AccessRights": "#AccessRights",
"PetId": "int64?"
},
"Pet":{
"Name": "string",
"Kind": "byte"
},
"UpdatePersonRequest": {
"Name": "string",
"Gender": "#Gender",
"AccessRights": "#AccessRights",
"Pets": "#Pet*"
}
}
The previous example demonstrates the following things:
- Flagged enums (AccessRights)
- Unflagged enums (Gender)
- Primitive types (uuid, string, int32, int64)
- Contract references (#Gender, #AccessRights #BankAccounts; always prefixed with '#')
- Array properties (#BankAccounts*; always suffixed with '*')
- Primary keys ('isPartOfKey')
User-defined types
To pass in multiple ids for the 'DeletePerson' endpoint, we need to create a user-defined table type. Create a new .sql file name 'udt_intset.sql' with the following content:
-- @Name IdSet
CREATE TYPE [dbo].[udt_intset] AS TABLE
(
[id] INT NOT NULL PRIMARY KEY
)
To pass in multiple items of Pet
to the UpdatePerson
endpoint, we need another user-defined table type. Create a new .sql file name 'udt_petset.sql' with the following content:
-- @Name PetSet
CREATE TYPE [dbo].[udt_petset] AS TABLE
(
[position] TINYINT NOT NULL PRIMARY KEY
, [type] TINYINT NOT NULL
, [name] NVARCHAR(50) NOT NULL
)
HTTP endpoints
- Ensure, that there is a folder named "Endpoints" at the root of the project
- Create a new .json file named "Person.json" with the following content:
{
"Person": [
{
"method": "GET",
"target": "GetPersons"
},
{
"method": "GET",
"target": "GetPerson",
"childRoute": "{personId}"
},
{
"method": "POST",
"target": "CreatePerson",
"childRoute": "{personId}",
"body": "CreatePersonRequest",
"params": {
"accessrights": "BODY.Rights"
}
},
{
"method": "PUT",
"target": "CreatePerson",
"childRoute": "{personId}",
"body": "UpdatePersonRequest",
"params": {
"pets": {
"source": "BODY.Pets",
"items": {
"position": "ITEM.$INDEX",
"type": "ITEM.Kind"
}
}
}
},
{
"method": "PATCH",
"target": "UpdatePersonName",
"childRoute": "{personId}/Name/{name}"
},
{
"method": "DELETE",
"target": "DeletePersons"
}
]
}
Stored procedures
In the following sections, each endpoint is implemented using a stored procedure. Each procedure is decorated with a few metadata properties inside T-SQL comments in the header.
GetPersons
Stored Procedures\getpersons.sql
-- @Name GetPersons
-- @Return PersonInfo
CREATE PROCEDURE [dbo].[getpersons]
AS
SELECT [id] = [p].[personid]
, [name] = [p].[name]
FROM (VALUES (1, N'Luke')
, (2, N'Maria')) AS [p]([personid], [name])
Remarks
The previous example describes two metadata properties:
- @Name controls the name of the target
- @Return describes an output.<br />For each SELECT a @Return hint has to be defined. The @Return property has several sub properties. In the previous statement we rely on the default which is equivalent to 'ClrTypes:PersonInfo Mode:Multiple'. This means, that multiple rows are returned and each should be mapped to the 'PersonInfo' contract.
HTTP request
GET /api/Person
HTTP response body
[
{
"id": 1,
"name": "Luke"
},
{
"id": 2,
"name": "Maria"
}
]
GetPerson
Stored Procedures\getperson.sql
-- @Name GetPerson
-- @Return ClrTypes:PersonDetail;BankAccount SplitOn:id Mode:Single
CREATE PROCEDURE [dbo].[getperson] @personid INT
AS
SELECT [id] = [p].[personid]
, [name] = [p].[name]
, [gender] = [p].[gender]
, [accessrights] = [p].[accessrights]
, [petid] = [p].[petid]
, [id] = [b].[bankaccountid]
, [name] = [b].[name]
FROM (VALUES (1, N'Luke', 1 /* Male */, 7 /* All */, 10)
, (2, N'Maria', 2 /* Female */, 1 /* Read */, NULL)) AS [p]([personid], [name], [gender], [accessrights], [petid])
LEFT JOIN (VALUES (100, N'Personal', 1)
, (101, N'Savings', 1)) AS [b]([bankaccountid], [name], [personid]) ON [p].[personid] = [b].[personid]
WHERE [p].[personid] = @personid
Remarks
The previous sample is a bit trickier. Here we expect a single result of the 'PersonDetail' contract. The related entity 'BankAccount' is loaded within the same query. This requires that two entity contracts are specified for the 'ClrTypes' property combined with the ';' separator. The 'SplitOn' is also required to mark where the next related entity starts. In this case 'id' is the bank account id column. If you have more related entities, the split on columns are combined with a ',' separator.<br />
Important: If you are working with multi map, make sure to define a key on each parent entity using the isPartOfKey
property as defined in the contracts above. Otherwise you might end up with duplicated results.
HTTP request
GET /api/Person/1
HTTP response body
{
"Id": 1,
"Name": "Luke",
"Gender": 1,
"AccessRights": 7,
"BankAccounts": [
{
"Id": 100,
"Name": "Personal"
},
{
"Id": 101,
"Name": "Savings"
}
],
"PetId": 10
}
CreatePerson
Stored Procedures\createperson.sql
-- @Name CreatePerson
-- @Return ClrTypes:int Mode:Single
CREATE PROCEDURE [dbo].[createperson] @name NVARCHAR(255), @gender TINYINT, @accessrights TINYINT, @petid BIGINT
AS
DECLARE @personid INT = 1
DECLARE @persons TABLE
(
[personid] INT NOT NULL
, [name] NVARCHAR(128) NOT NULL
, [gender] TINYINT NOT NULL
, [accessrights] TINYINT NOT NULL
, [petid] BIGINT NULL
, PRIMARY KEY([personid])
)
INSERT INTO @persons ([personid], [name], [gender], [accessrights], [petid])
VALUES (@personid, @name, @gender, @accessrights, @petid)
SELECT @personid
HTTP request
POST /api/Person
{
"Name": "Luke",
"Gender": 1,
"Rights": 7,
"PetId": 10
}
Remarks
As you can see here the stored procedure parameter accessrights
doesn't match a property on the body. It will however be mapped from Rights
, because a custom parameter mapping using the BODY
source was defined in the endpoint configuration above. This is useful if the names of the client property and the parameter name in the target stored procedure differ.
HTTP response body
1
UpdatePerson
Stored Procedures\updateperson.sql
-- @Name UpdatePerson
CREATE PROCEDURE [dbo].[updateperson] @personid INT, @name NVARCHAR(255), @gender TINYINT, @accessrights TINYINT, @pets [dbo].[udt_petset] READONLY
AS
UPDATE @persons SET [name] = @name, [gender] = @gender, [accessrights] = @accessrights
WHERE [personid] = @personid
-- Do something with @pets, like MERGE
HTTP request
PUT /api/Person/1
{
"Name": "Luke",
"Gender": 1,
"AccessRights": 7,
"Pets": [
{
"Name": "Pet",
"Kind": 1
}
]
}
Remarks
The body contains a collection property named Pets
. Collections will be mapped to a UDT, which needs to exist in the target database. In this case [dbo].[udt_petset]
. The properties of the collection items will be mapped to matching columns of the UDT.<br />
For this endpoint there are some custom parameter mappings defined in the endpoint configuration above:
- The
position
column of the UDT just serves as a primary key and will be mapped from the index of the item in the collection. This is done using the internal$INDEX
property on theITEM
source. - The
type
column of the UDT will be mapped from theKind
property of each instance ofPet
. - The
name
column doesn't require a mapping and will be automatically mapped from the matchingName
property of each instance ofPet
.
UpdatePersonName
Stored Procedures\updatepersonname.sql
-- @Name UpdatePersonName
CREATE PROCEDURE [dbo].[updatepersonname] @personid INT, @name NVARCHAR(255)
AS
UPDATE @persons SET [name] = @name
WHERE [personid] = @personid
HTTP request
PATCH /api/Person/1/Name/Luke
DeletePersons
Stored Procedures\deletepersons.sql
-- @Name DeletePersons
CREATE PROCEDURE [dbo].[deletepersons] @personids [dbo].[udt_intset] READONLY
AS
DELETE [p]
FROM @persons AS [p]
INNER JOIN @personids AS [pi] ON [p].[personid] = [pi].[personid]
HTTP request
DELETE /api/Person?personIds[]=1&personIds[]=2
Compiling the project
Once you have created all the necessary artifacts, you can build the database project. With the Dibix MSBuild targets automatically integrated into the build pipeline, you end up with a .dll next to your .dacpac file in your output directory. The assembly contains everything required to feed a web server with the REST API definitions.<br /> As of right now Dibix itself does not contain a runtime implementation for the web server. So again, please check if there is any existing documentation in the product you are working on or ask me for assistance.
Consuming endpoints
If the project contains any HTTP endpoints, a client assembly and an OpenAPI document are also created during compilation. The client assembly contains a service interface and implementation for each endpoint defined in the project along with their referenced contracts. A host project can consume these client assemblies and register the implementation in the DI container to make the interface available to consumers via IoC. <br />
The implementation is based on the Dibix.Http.Client runtime and the generated services may require a few dependencies:
| Type | Required | Implementation(s) |
| - | - | - |
| IHttpClientFactory
| Optional |DefaultHttpClientFactory
|
| IHttpAuthorizationProvider
| Required (if endpoint requires authorization) | - |
The OpenAPI document will be generated in YAML and JSON format and can be used to generate other artifacts, for example clients in other languages like TypeScript.
Syntax reference
Stored procedure
In this section, the markup properties to declare input and output of the stored procedure is explained in more detail. The documentation is still in progress. You can also have a look at these tests for more examples.
Name
PascalCase naming is recommended for referencing actions in API definitions. If all lower case naming is used in T-SQL, this enables you to generate a PascalCase name for the action.
-- @Name GetPersons
{
"Person": [
{
"target": "GetPersons"
}
]
}
Namespace
Allows to group actions into a separate (relative) namespace.
-- @Name GetPersons
-- @Namespace Group
{
"Person": [
{
"target": "Group.GetPersons"
}
]
}
To be continued...
Contract
In this section the schema for defining contracts is described. The documentation is still in progress. For now you can use the JSON schema as a reference or have a look at these tests as samples.
Endpoint
In this section the schema for defining endpoints is described. The documentation is still in progress. For the sake of completeness, you can use the JSON schema as a reference.
An endpoint JSON starts with a root object. Each property inside the root object maps to an endpoint. An endpoint is similar to a controller in ASP.NET. The property name defines the name of the endpoint. Along with the area name (based on the component name), it controls the URL of the API: api/{areaName}/{endpointName}
.
{
"EndpointName": [
{
"method": "GET",
"target": "GetEntity",
"childRoute": "{id}"
}
]
}
Each endpoint object consists of an array, in which the respective actions are defined. To ensure a RESTful API, each action is distinguished by its HTTP verb, which follows CRUD operations, and a unique path.
To extend the path to the API, the childRoute
property can be used, which is appended to the path base, extending the route template as such: api/{areaName}/{endpointName}/{childRoute}
.
Target
The target property should contain the name of the stored procedure that is invoked by this API action.
To be continued...
HTTP status code
By default Dibix endpoints return 200 OK for operations that have a result and 204 NoContent for those that do not return a result.<br /> However sometimes you need to return a different HTTP status code, for example to indicate that the request is invalid. Ideally you could return a different response body along with a specific HTTP status code, however this is not an easy task and gets very complex with the current way how response types are declared and also validated with the according T-SQL output statements.<br /> Therefore currently it's only possible to return a specific HTTP status code (supported are currently some client and some server errors) along with an additional error code and a message, both which are returned as custom HTTP response headers.
To return an error response, use the T-SQL THROW statement
4xx client error
Supported: Code|Name|Sample use cases | - | - | - | | 400 | BadRequest | Client syntax error (malformed request) | | 401 | Unauthorized | Either the request is missing credentials or the credentials were not accepted | | 403 | Forbidden | The authorized user is not allowed to access the current resource | | 404 | NotFound | Resource with given ID not found, Feature not available/configured | | 409 | Conflict | The resource is currently locked by another request (might resolve by retry) | | 422 | UnprocessableEntity | The client content was not accepted because of a semantic error (i.E. schema validation) |
SQL
THROW 404017, N'Service not available', 1
The error code of the THROW statement is used to indicate the HTTP status code (first three digits) and a custom error code (last three digits) for the application/feature, which can be used for custom handling or resolve a translation for the error message on the client.<br />
HTTP response
HTTP/1.1 404 Not Found
X-Error-Code: 17
X-Error-Description: Service not available
5xx server error (Supported: 504)
For server errors, custom error codes are not supported, since they quite possibly cannot be fixed/handled by the client and could also disclose sensitive information.<br />
Supported: Code|Name|Sample use cases | - | - | - | | 504 | GatewayTimeout | External service did not respond in time |
SQL
THROW 504000, N'Request with id '' + @id + '' timed out', 1
HTTP response
HTTP/1.1 504 Gateway Timeout
Builtin parameter source providers
This section describes known parameter sources that are already registered and can help to dynamically map a stored procedure parameter from. They are used in the endpoint definition json and are accessible within the parameter configuration.
QUERY
This source provides access to the query string arguments.
PATH
This source provides access to the path segment arguments. For example use PATH.userId
to access the userId
parameter in the URL User/{userId}
.
BODY
This source provides access to the properties on a JSON object supplied in the body. It requires the body property to be set on the action definition to specify the expected contract of the body.
Sample:
{
"Person": [
{
"method": "POST",
"target": "CreatePerson",
"body": "CreatePersonRequest",
"params": {
"accessrights": "BODY.Rights"
}
}
]
}
HEADER
This source provides access to the request headers. For example HEADER.Authorization
.
REQUEST
This source provides access to the HTTP request. It supports the following properties:
PropertyName|Type|Value
| - | - | - |
| Language | string | The value provided in the Accept-Language
header |
ENV
This source provides access to the server environment. It supports the following properties:
PropertyName|Type|Value
| - | - | - |
| MachineName | string | The value of System.Environment.MachineName
|
| CurrentProcessId | int | The value of System.Diagnostics.Process.GetCurrentProcess()
.Id
Roadmap
- Continue writing this documentation 🤓
- Dibix.Server<br /> This is the overall goal, which drives the whole project, since the idea at the end is to have an independent lightweight server application, that consumes only declarative API registrations rather than DLLs.
- Make it work with NuGet (see above)
- Complete OpenAPI generator<br />
Right now a JSON and YAML file is generated for each project. It's not published to an output folder yet and can be found in the intermediate folder of the project (
obj\Debug
). The document itself is not yet completed and can currently only be consumed for contract generation (components.schemas).
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.4.45 | 145 | 11/7/2024 |
1.4.41 | 160 | 10/30/2024 |
1.4.40 | 158 | 10/29/2024 |
1.4.35 | 160 | 10/24/2024 |
1.4.34 | 173 | 10/4/2024 |
1.4.29 | 121 | 10/4/2024 |
1.4.27 | 157 | 9/18/2024 |
1.4.26 | 183 | 9/16/2024 |
1.4.21 | 158 | 9/12/2024 |
1.4.18 | 208 | 8/30/2024 |
1.4.10 | 198 | 8/24/2024 |
1.4.6 | 184 | 8/23/2024 |
1.4.2 | 198 | 8/17/2024 |
1.4.1 | 158 | 8/16/2024 |
1.3.84 | 178 | 8/15/2024 |
1.3.82 | 8,584 | 7/4/2024 |
1.3.80 | 677 | 7/3/2024 |
1.3.76 | 3,899 | 6/19/2024 |
1.3.72 | 1,162 | 6/17/2024 |
1.3.66 | 1,643 | 6/10/2024 |
1.3.62 | 618 | 6/6/2024 |
1.3.56 | 820 | 6/2/2024 |
1.3.53 | 525 | 5/29/2024 |
1.3.50 | 1,358 | 5/27/2024 |
1.3.44 | 935 | 5/23/2024 |
1.3.39 | 724 | 5/15/2024 |
1.3.33 | 1,849 | 4/29/2024 |
1.3.32 | 419 | 4/25/2024 |
1.3.31 | 598 | 4/23/2024 |
1.3.29 | 115 | 4/17/2024 |
1.3.26 | 2,288 | 4/12/2024 |
1.3.24 | 1,271 | 4/10/2024 |
1.3.20 | 1,421 | 3/27/2024 |
1.3.14 | 4,560 | 3/6/2024 |
1.3.11 | 1,629 | 2/27/2024 |
1.3.7 | 1,633 | 2/20/2024 |
1.3.4 | 2,930 | 2/6/2024 |
1.3.2 | 483 | 2/2/2024 |
1.2.221 | 10,372 | 1/31/2024 |
1.2.219 | 634 | 1/30/2024 |
1.2.212 | 1,329 | 1/23/2024 |
1.2.207 | 2,601 | 1/16/2024 |
1.2.200 | 7,023 | 12/14/2023 |
1.2.194 | 2,755 | 11/27/2023 |
1.2.191 | 3,451 | 11/10/2023 |
1.2.189 | 173 | 11/8/2023 |
1.2.187 | 1,711 | 11/6/2023 |
1.2.173 | 1,590 | 10/26/2023 |
1.2.171 | 676 | 10/25/2023 |
1.2.163 | 1,238 | 10/19/2023 |
1.2.151 | 4,405 | 9/19/2023 |
1.2.149 | 306 | 9/19/2023 |
1.2.146 | 224 | 9/6/2023 |
1.2.142 | 6,532 | 8/1/2023 |
1.2.136 | 9,692 | 6/1/2023 |
1.2.126 | 1,747 | 5/25/2023 |
1.2.120 | 716 | 5/23/2023 |
1.2.117 | 247 | 5/22/2023 |
1.2.115 | 160 | 5/22/2023 |
1.2.112 | 174 | 5/19/2023 |
1.2.110 | 2,282 | 5/12/2023 |
1.2.107 | 189 | 5/10/2023 |
1.2.106 | 1,576 | 5/6/2023 |
1.2.105 | 534 | 5/5/2023 |
1.2.101 | 796 | 5/3/2023 |
1.2.96 | 2,899 | 4/17/2023 |
1.2.95 | 281 | 4/17/2023 |
1.2.85 | 305 | 3/28/2023 |
1.2.84 | 3,950 | 3/27/2023 |
1.2.83 | 760 | 3/25/2023 |
1.2.76 | 1,042 | 3/20/2023 |
1.2.74 | 253 | 3/8/2023 |
1.2.72 | 2,202 | 3/7/2023 |
1.2.70 | 1,090 | 3/1/2023 |
1.2.60 | 7,235 | 2/2/2023 |
1.2.59 | 2,588 | 1/20/2023 |
1.2.58 | 726 | 1/19/2023 |
1.2.57 | 7,120 | 12/9/2022 |
1.2.50 | 2,964 | 11/25/2022 |
1.2.49 | 2,536 | 11/21/2022 |
1.2.48 | 1,327 | 11/16/2022 |
1.2.47 | 1,247 | 11/14/2022 |
1.2.45 | 1,023 | 11/10/2022 |
1.2.43 | 635 | 11/9/2022 |
1.2.38 | 1,050 | 11/7/2022 |
1.2.37 | 893 | 11/3/2022 |
1.2.36 | 408 | 10/31/2022 |
1.2.31 | 4,165 | 9/29/2022 |
1.2.30 | 1,146 | 9/27/2022 |
1.2.28 | 963 | 9/23/2022 |
1.2.23 | 2,250 | 9/14/2022 |
1.2.20 | 571 | 9/13/2022 |
1.2.19 | 1,539 | 9/7/2022 |
1.2.17 | 2,074 | 8/30/2022 |
1.2.14 | 456 | 8/29/2022 |
1.2.11 | 1,983 | 8/23/2022 |
1.2.9 | 5,048 | 8/4/2022 |
1.2.5 | 1,495 | 7/28/2022 |
1.1.167 | 328 | 12/1/2022 |
1.1.159 | 22,157 | 7/21/2022 |
1.1.155 | 558 | 6/23/2022 |
1.1.154 | 8,504 | 6/22/2022 |
1.1.151 | 1,413 | 6/20/2022 |
1.1.150 | 487 | 6/7/2022 |
1.1.148 | 496 | 6/3/2022 |
1.1.146 | 3,666 | 6/2/2022 |
1.1.144 | 480 | 6/1/2022 |
1.1.143 | 489 | 5/31/2022 |
1.1.142 | 1,636 | 5/25/2022 |
1.1.139 | 996 | 5/23/2022 |
1.1.137 | 1,784 | 5/19/2022 |
1.1.131 | 1,501 | 5/17/2022 |
1.1.115 | 3,241 | 4/29/2022 |
1.1.109 | 3,612 | 4/25/2022 |
1.1.106 | 1,170 | 4/21/2022 |
1.1.104 | 569 | 4/21/2022 |
1.1.99 | 488 | 4/4/2022 |
1.1.98 | 492 | 4/1/2022 |
1.1.97 | 6,896 | 4/1/2022 |
1.1.96 | 526 | 3/31/2022 |
1.1.95 | 1,684 | 3/30/2022 |
1.1.92 | 1,477 | 3/28/2022 |
1.1.89 | 495 | 3/23/2022 |
1.1.88 | 504 | 3/16/2022 |
1.1.86 | 4,424 | 3/15/2022 |
1.1.84 | 3,296 | 3/8/2022 |
1.1.83 | 1,102 | 3/4/2022 |
1.1.82 | 7,294 | 2/17/2022 |
1.1.80 | 3,318 | 2/10/2022 |
1.1.79 | 909 | 2/9/2022 |
1.1.78 | 532 | 2/8/2022 |
1.1.77 | 1,959 | 2/7/2022 |
1.1.76 | 1,859 | 2/3/2022 |
1.1.75 | 1,736 | 2/1/2022 |
1.1.74 | 1,039 | 1/31/2022 |
1.1.72 | 833 | 1/28/2022 |
1.1.69 | 949 | 1/26/2022 |
1.1.68 | 534 | 1/25/2022 |
1.1.67 | 972 | 1/24/2022 |
1.1.63 | 3,025 | 1/13/2022 |
1.1.60 | 398 | 1/6/2022 |
1.1.59 | 2,879 | 1/6/2022 |
1.1.57 | 2,554 | 12/21/2021 |
1.1.56 | 583 | 12/20/2021 |
1.1.53 | 692 | 12/17/2021 |
1.1.51 | 3,498 | 12/6/2021 |
1.1.49 | 1,497 | 12/3/2021 |
1.1.48 | 2,067 | 12/1/2021 |
1.1.46 | 4,689 | 11/25/2021 |
1.1.45 | 2,704 | 11/18/2021 |
1.1.43 | 1,046 | 11/17/2021 |
1.1.40 | 1,013 | 11/16/2021 |
1.1.38 | 2,563 | 11/10/2021 |
1.1.33 | 415 | 11/8/2021 |
1.1.32 | 1,867 | 11/8/2021 |
1.1.31 | 482 | 11/3/2021 |
1.1.30 | 2,326 | 10/29/2021 |
1.1.28 | 783 | 10/28/2021 |
1.1.27 | 4,859 | 10/14/2021 |
1.1.25 | 463 | 10/14/2021 |
1.1.24 | 1,146 | 10/11/2021 |
1.1.22 | 392 | 10/5/2021 |
1.1.21 | 7,969 | 9/21/2021 |
1.1.19 | 491 | 9/20/2021 |
1.1.17 | 4,491 | 9/16/2021 |
1.1.14 | 4,844 | 9/8/2021 |
1.1.13 | 2,805 | 9/7/2021 |
1.1.10 | 1,052 | 9/6/2021 |
1.1.9 | 1,224 | 9/3/2021 |
1.1.8 | 3,843 | 8/26/2021 |
1.1.6 | 3,440 | 8/16/2021 |
1.1.5 | 2,623 | 8/10/2021 |
1.1.3 | 826 | 8/9/2021 |
1.1.2 | 1,307 | 8/6/2021 |
1.1.1 | 3,456 | 7/27/2021 |
1.0.134 | 21,160 | 7/1/2021 |