Skip to content

Commit

Permalink
Merge pull request #4327 from signalco-io/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
AleksandarDev authored Jan 13, 2024
2 parents 7e8965a + 5b9d656 commit ba1940a
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,22 @@ namespace Signal.Infrastructure.AzureStorage.Tables;
[Serializable]
internal class AzureAuthPat : AzureTableEntityBase
{
public string PatEnd { get; }
public string? Alias { get; }
public DateTime? Expire { get; }
public string PatEnd { get; set; }

public string? Alias { get; set; }

public DateTime? Expire { get; set; }

[Obsolete("For serialization only.", true)]
public AzureAuthPat() : base(string.Empty, string.Empty)
{
this.PatEnd = string.Empty;
}

protected AzureAuthPat(string partitionKey, string rowKey) : base(partitionKey, rowKey)
{
this.PatEnd = string.Empty;
}

public AzureAuthPat(string userId, string patHash, string patEnd, string? alias, DateTime? expire)
: this(userId, patHash)
Expand All @@ -18,10 +31,6 @@ public AzureAuthPat(string userId, string patHash, string patEnd, string? alias,
this.Expire = expire;
}

private AzureAuthPat(string partitionKey, string rowKey) : base(partitionKey, rowKey)
{
}

public static IPat ToPat(AzureAuthPat pat) => new Pat
{
UserId = pat.PartitionKey,
Expand Down
4 changes: 2 additions & 2 deletions web/apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"@signalco/ui-primitives": "workspace:*",
"@signalco/ui-notifications": "workspace:*",
"@signalco/ui-icons": "workspace:*",
"@tanstack/react-query": "5.17.9",
"@tanstack/react-query-devtools": "5.17.9",
"@tanstack/react-query": "5.17.10",
"@tanstack/react-query-devtools": "5.17.10",
"@vercel/analytics": "1.1.1",
"@vercel/speed-insights": "1.0.3",
"@vvo/tzdb": "6.124.0",
Expand Down
6 changes: 3 additions & 3 deletions web/apps/doprocess/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@
"@signalco/ui-icons": "workspace:*",
"@signalco/ui-notifications": "workspace:*",
"@signalco/ui-primitives": "workspace:*",
"@tanstack/react-query": "5.17.9",
"@tanstack/react-query-devtools": "5.17.9",
"@tanstack/react-query": "5.17.10",
"@tanstack/react-query-devtools": "5.17.10",
"@vercel/analytics": "1.1.1",
"classix": "2.1.35",
"drizzle-orm": "0.29.3",
"nanoid": "5.0.4",
"next": "14.0.4",
"next-secure-headers": "2.2.0",
"next-themes": "0.2.1",
"openai": "4.24.6",
"openai": "4.24.7",
"react": "18.2.0",
"react-cool-inview": "3.0.1",
"react-dom": "18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions web/apps/uier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@signalco/ui-icons": "workspace:*",
"@signalco/ui-notifications": "workspace:*",
"@signalco/ui-primitives": "workspace:*",
"@tanstack/react-query": "5.17.9",
"@tanstack/react-query-devtools": "5.17.9",
"@tanstack/react-query": "5.17.10",
"@tanstack/react-query-devtools": "5.17.10",
"@vercel/analytics": "1.1.1",
"classix": "2.1.35",
"next": "14.0.4",
Expand Down
2 changes: 1 addition & 1 deletion web/packages/uier-toolbar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"autoprefixer": "10.4.16",
"postcss": "8.4.33",
"postcss-preset-env": "9.3.0",
"@tanstack/react-query": "5.17.9",
"@tanstack/react-query": "5.17.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-timeago": "7.2.0",
Expand Down
54 changes: 27 additions & 27 deletions web/pnpm-lock.yaml

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

7 comments on commit ba1940a

@vercel
Copy link

@vercel vercel bot commented on ba1940a Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-slco – ./web/apps/slco

signalco-slco.vercel.app
signalco-slco-git-main-signalco.vercel.app
slco.signalco.io
signalco-slco-signalco.vercel.app
slco.io

@vercel
Copy link

@vercel vercel bot commented on ba1940a Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-app – ./web/apps/app

signalco-app.vercel.app
signalco-app-git-main-signalco.vercel.app
signalco-app-signalco.vercel.app
app.signalco.io

@vercel
Copy link

@vercel vercel bot commented on ba1940a Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on ba1940a Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on ba1940a Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-blog – ./web/apps/blog

signalco-blog-signalco.vercel.app
blog.signalco.io
signalco-blog-git-main-signalco.vercel.app
signalco-blog.vercel.app

@vercel
Copy link

@vercel vercel bot commented on ba1940a Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-uier – ./web/apps/uier

signalco-uier.vercel.app
signalco-uier-signalco.vercel.app
signalco-uier-git-main-signalco.vercel.app
uier.io
next.uier.io

@vercel
Copy link

@vercel vercel bot commented on ba1940a Jan 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.