Lines 280-376javascript
282export const SEED_ORG_1 = {
283 organization_uuid: '172a2270-000f-42be-9c68-c4752c23ae51',
284 organization_name: 'Jaffle Shop',
286export const SEED_ORG_1_ADMIN = {
287 user_uuid: 'b264d83a-9000-426a-85ec-3f9c20f368ce',
289 last_name: 'Attenborough',
290 is_marketing_opted_in: true,
291 is_tracking_anonymized: false,
292 is_setup_complete: true,
295export const SEED_ORG_1_ADMIN_EMAIL = {
296 email: 'demo@lightdash.com',
299export const SEED_ORG_1_ADMIN_PASSWORD = {
300 password: 'demo_password!',
302export const SEED_ORG_1_ADMIN_ROLE = OrganizationMemberRole.ADMIN;
303export const SEED_ORG_1_EDITOR = {
304 user_uuid: '80fb8b59-d6b7-4ed6-b969-9849310f3e53',
305 first_name: 'Editor',
307 is_marketing_opted_in: true,
308 is_tracking_anonymized: false,
309 is_setup_complete: true,
312export const SEED_ORG_1_EDITOR_EMAIL = {
313 email: 'demo2@lightdash.com',
316export const SEED_ORG_1_EDITOR_PASSWORD = {
317 password: 'demo_password!',
319export const SEED_ORG_1_EDITOR_ROLE = OrganizationMemberRole.EDITOR;
320export const SEED_ORG_1_VIEWER = {
321 user_uuid: 'e0dd2003-c291-4e14-b977-7a03b7edc842',
322 first_name: 'Viewer',
324 is_marketing_opted_in: true,
325 is_tracking_anonymized: false,
326 is_setup_complete: true,
329export const SEED_ORG_1_VIEWER_EMAIL = {
330 email: 'demo3@lightdash.com',
333export const SEED_ORG_1_VIEWER_PASSWORD = {
334 password: 'demo_password!',
336export const SEED_ORG_1_VIEWER_ROLE = OrganizationMemberRole.VIEWER;
338export const SEED_ORG_2 = {
339 organization_uuid: '42339eef-359e-4ec4-b810-54ef0b4e3446',
340 organization_name: 'Another Shop',
342export const SEED_ORG_2_ADMIN = {
343 user_uuid: '57cd4548-cbe3-42b3-aa13-97821713e307',
344 first_name: 'Another',
346 is_marketing_opted_in: true,
347 is_tracking_anonymized: false,
348 is_setup_complete: true,
351export const SEED_ORG_2_ADMIN_EMAIL = {
352 email: 'another@lightdash.com',
355export const SEED_ORG_2_ADMIN_PASSWORD = {
356 password: 'demo_password!',
358export const SEED_ORG_2_ADMIN_ROLE = OrganizationMemberRole.ADMIN;
359export const SEED_EMBED_SECRET = 'zU3h50saDOO20czNFNRok';
360// Deterministic PAT for dev environment
361// Use with: Authorization: ApiKey ldpat_deadbeefdeadbeefdeadbeefdeadbeef
362export const SEED_PAT = {
363 token: 'ldpat_deadbeefdeadbeefdeadbeefdeadbeef',
364 description: 'Dev seed PAT',
366export const SEED_PROJECT = {
367 project_uuid: '3675b69e-8324-4110-bdca-059031aa8da3',
369 project_type: ProjectType.DEFAULT,
370 dbt_connection_type: DbtProjectType.DBT,
371 dbt_connection: null,
372 copied_from_project_uuid: null,
373 organization_warehouse_credentials_uuid: null,
375export const SEED_SPACE = {
376 name: SEED_PROJECT.name,