Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
toptobes committed Apr 16, 2024
1 parent 49c1848 commit e8971a9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion etc/astra-db-ts.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ export type StrictPop<Schema extends SomeDoc, InNotation = ToDotNotation<Schema>
export type StrictProjection<Schema extends SomeDoc> = {
[K in keyof ToDotNotation<WithId<Schema>>]?: any[] extends (ToDotNotation<WithId<Schema>>)[K] ? 1 | 0 | true | false | ProjectionSlice : 1 | 0 | true | false;
} & {
'*': 1 | 0 | true | false;
'*'?: 1 | 0 | true | false;
};

// @public
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datastax/astra-db-ts",
"version": "1.0.0",
"version": "1.0.1",
"description": "Astra DB TS Client",
"contributors": [
"Kavin Gupta (https://github.com/toptobes)",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const LIB_NAME = 'astra-db-ts';
export const LIB_VERSION = "1.0.0";
export const LIB_VERSION = "1.0.1";

0 comments on commit e8971a9

Please sign in to comment.