@elevasis/sdk 0.8.6 → 0.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.cjs CHANGED
@@ -43883,7 +43883,7 @@ function wrapAction(commandName, fn) {
43883
43883
  // package.json
43884
43884
  var package_default = {
43885
43885
  name: "@elevasis/sdk",
43886
- version: "0.8.6",
43886
+ version: "0.8.7",
43887
43887
  description: "SDK for building Elevasis organization resources",
43888
43888
  type: "module",
43889
43889
  bin: {
package/dist/index.d.ts CHANGED
@@ -2407,6 +2407,170 @@ type Database = {
2407
2407
  };
2408
2408
  Relationships: [];
2409
2409
  };
2410
+ seo_metrics: {
2411
+ Row: {
2412
+ ai_citations: Json | null;
2413
+ avg_position: number | null;
2414
+ clicks: number | null;
2415
+ created_at: string;
2416
+ cta_clicks: number | null;
2417
+ ctr: number | null;
2418
+ data_point_count: number | null;
2419
+ faq_count: number | null;
2420
+ form_submissions: number | null;
2421
+ id: string;
2422
+ impressions: number | null;
2423
+ organization_id: string;
2424
+ period: string;
2425
+ quality_score: number | null;
2426
+ readability: number | null;
2427
+ scroll_100: number | null;
2428
+ scroll_25: number | null;
2429
+ scroll_50: number | null;
2430
+ scroll_75: number | null;
2431
+ seo_page_id: string;
2432
+ word_count: number | null;
2433
+ };
2434
+ Insert: {
2435
+ ai_citations?: Json | null;
2436
+ avg_position?: number | null;
2437
+ clicks?: number | null;
2438
+ created_at?: string;
2439
+ cta_clicks?: number | null;
2440
+ ctr?: number | null;
2441
+ data_point_count?: number | null;
2442
+ faq_count?: number | null;
2443
+ form_submissions?: number | null;
2444
+ id?: string;
2445
+ impressions?: number | null;
2446
+ organization_id: string;
2447
+ period: string;
2448
+ quality_score?: number | null;
2449
+ readability?: number | null;
2450
+ scroll_100?: number | null;
2451
+ scroll_25?: number | null;
2452
+ scroll_50?: number | null;
2453
+ scroll_75?: number | null;
2454
+ seo_page_id: string;
2455
+ word_count?: number | null;
2456
+ };
2457
+ Update: {
2458
+ ai_citations?: Json | null;
2459
+ avg_position?: number | null;
2460
+ clicks?: number | null;
2461
+ created_at?: string;
2462
+ cta_clicks?: number | null;
2463
+ ctr?: number | null;
2464
+ data_point_count?: number | null;
2465
+ faq_count?: number | null;
2466
+ form_submissions?: number | null;
2467
+ id?: string;
2468
+ impressions?: number | null;
2469
+ organization_id?: string;
2470
+ period?: string;
2471
+ quality_score?: number | null;
2472
+ readability?: number | null;
2473
+ scroll_100?: number | null;
2474
+ scroll_25?: number | null;
2475
+ scroll_50?: number | null;
2476
+ scroll_75?: number | null;
2477
+ seo_page_id?: string;
2478
+ word_count?: number | null;
2479
+ };
2480
+ Relationships: [
2481
+ {
2482
+ foreignKeyName: "seo_metrics_organization_id_fkey";
2483
+ columns: ["organization_id"];
2484
+ isOneToOne: false;
2485
+ referencedRelation: "organizations";
2486
+ referencedColumns: ["id"];
2487
+ },
2488
+ {
2489
+ foreignKeyName: "seo_metrics_seo_page_id_fkey";
2490
+ columns: ["seo_page_id"];
2491
+ isOneToOne: false;
2492
+ referencedRelation: "seo_pages";
2493
+ referencedColumns: ["id"];
2494
+ }
2495
+ ];
2496
+ };
2497
+ seo_pages: {
2498
+ Row: {
2499
+ city: string | null;
2500
+ content: Json | null;
2501
+ created_at: string;
2502
+ faq_items: Json | null;
2503
+ id: string;
2504
+ internal_links: Json | null;
2505
+ local_data: Json | null;
2506
+ meta_description: string | null;
2507
+ organization_id: string;
2508
+ page_type: string;
2509
+ published_at: string | null;
2510
+ refreshed_at: string | null;
2511
+ schema_markup: Json | null;
2512
+ slug: string;
2513
+ state: string | null;
2514
+ status: string;
2515
+ title: string;
2516
+ updated_at: string;
2517
+ use_case: string | null;
2518
+ vertical: string;
2519
+ };
2520
+ Insert: {
2521
+ city?: string | null;
2522
+ content?: Json | null;
2523
+ created_at?: string;
2524
+ faq_items?: Json | null;
2525
+ id?: string;
2526
+ internal_links?: Json | null;
2527
+ local_data?: Json | null;
2528
+ meta_description?: string | null;
2529
+ organization_id: string;
2530
+ page_type: string;
2531
+ published_at?: string | null;
2532
+ refreshed_at?: string | null;
2533
+ schema_markup?: Json | null;
2534
+ slug: string;
2535
+ state?: string | null;
2536
+ status?: string;
2537
+ title: string;
2538
+ updated_at?: string;
2539
+ use_case?: string | null;
2540
+ vertical: string;
2541
+ };
2542
+ Update: {
2543
+ city?: string | null;
2544
+ content?: Json | null;
2545
+ created_at?: string;
2546
+ faq_items?: Json | null;
2547
+ id?: string;
2548
+ internal_links?: Json | null;
2549
+ local_data?: Json | null;
2550
+ meta_description?: string | null;
2551
+ organization_id?: string;
2552
+ page_type?: string;
2553
+ published_at?: string | null;
2554
+ refreshed_at?: string | null;
2555
+ schema_markup?: Json | null;
2556
+ slug?: string;
2557
+ state?: string | null;
2558
+ status?: string;
2559
+ title?: string;
2560
+ updated_at?: string;
2561
+ use_case?: string | null;
2562
+ vertical?: string;
2563
+ };
2564
+ Relationships: [
2565
+ {
2566
+ foreignKeyName: "seo_pages_organization_id_fkey";
2567
+ columns: ["organization_id"];
2568
+ isOneToOne: false;
2569
+ referencedRelation: "organizations";
2570
+ referencedColumns: ["id"];
2571
+ }
2572
+ ];
2573
+ };
2410
2574
  session_messages: {
2411
2575
  Row: {
2412
2576
  created_at: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/sdk",
3
- "version": "0.8.6",
3
+ "version": "0.8.7",
4
4
  "description": "SDK for building Elevasis organization resources",
5
5
  "type": "module",
6
6
  "bin": {