feat(domain): drop the 'studio' (#818)

* feat(domain): drop the

* change all references for Sim Studio to Sim

* change back license and notice

* lint

---------

Co-authored-by: waleedlatif <waleedlatif@waleedlatifs-MacBook-Pro.local>
This commit is contained in:
Waleed Latif
2025-07-29 12:51:43 -07:00
committed by GitHub
parent 13608a8bbc
commit ae43381d84
235 changed files with 809 additions and 646 deletions

View File

@@ -143,7 +143,7 @@ describe('Function Execute API Route', () => {
code: 'return "Email sent to user"',
params: {
email: {
from: 'Waleed Latif <waleed@simstudio.ai>',
from: 'Waleed Latif <waleed@sim.ai>',
to: 'User <user@example.com>',
},
},
@@ -153,7 +153,7 @@ describe('Function Execute API Route', () => {
const response = await POST(req)
expect(response.status).toBe(200)
// Should not try to replace <waleed@simstudio.ai> as a template variable
// Should not try to replace <waleed@sim.ai> as a template variable
})
it('should only match valid variable names in angle brackets', async () => {
@@ -178,7 +178,7 @@ describe('Function Execute API Route', () => {
const gmailData = {
email: {
id: '123',
from: 'Waleed Latif <waleed@simstudio.ai>',
from: 'Waleed Latif <waleed@sim.ai>',
to: 'User <user@example.com>',
subject: 'Test Email',
bodyText: 'Hello world',
@@ -187,7 +187,7 @@ describe('Function Execute API Route', () => {
id: '123',
payload: {
headers: [
{ name: 'From', value: 'Waleed Latif <waleed@simstudio.ai>' },
{ name: 'From', value: 'Waleed Latif <waleed@sim.ai>' },
{ name: 'To', value: 'User <user@example.com>' },
],
},