@happyvertical/smrt-core 0.40.16 → 0.40.17

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.
@@ -1,9 +1,9 @@
1
1
  //#region src/manifest/test-manifest-stub.ts
2
2
  var testManifest = {
3
3
  "version": "1.0.0",
4
- "timestamp": 1784534102527,
4
+ "timestamp": 1784547096415,
5
5
  "packageName": "@happyvertical/smrt-core",
6
- "packageVersion": "0.40.16",
6
+ "packageVersion": "0.40.17",
7
7
  "objects": {
8
8
  "@happyvertical/smrt-core:SmrtClass": {
9
9
  "name": "smrtclass",
@@ -22583,6 +22583,258 @@ var testManifest = {
22583
22583
  "version": "c737093f"
22584
22584
  }
22585
22585
  },
22586
+ "@happyvertical/smrt-core:Issue2070PostgresHydrationProbe": {
22587
+ "name": "issue2070postgreshydrationprobe",
22588
+ "className": "Issue2070PostgresHydrationProbe",
22589
+ "qualifiedName": "@happyvertical/smrt-core:Issue2070PostgresHydrationProbe",
22590
+ "collection": "issue2070postgreshydrationprobes",
22591
+ "filePath": "packages/core/src/__tests__/issue-2070-postgres-hydration.optional.test.ts",
22592
+ "packageName": "@happyvertical/smrt-core",
22593
+ "fields": { "position": {
22594
+ "type": "integer",
22595
+ "required": false,
22596
+ "default": 0
22597
+ } },
22598
+ "methods": { "initialize": {
22599
+ "name": "initialize",
22600
+ "async": true,
22601
+ "parameters": [],
22602
+ "returnType": "Promise",
22603
+ "isStatic": false,
22604
+ "isPublic": true
22605
+ } },
22606
+ "decoratorConfig": { "tableName": "issue_2070_postgres_hydration_probes" },
22607
+ "extends": "SmrtObject",
22608
+ "exportName": "Issue2070PostgresHydrationProbe",
22609
+ "collectionExportName": "Issue2070PostgresHydrationProbeCollection",
22610
+ "schema": {
22611
+ "tableName": "issue_2070_postgres_hydration_probes",
22612
+ "ddl": "CREATE TABLE IF NOT EXISTS \"issue_2070_postgres_hydration_probes\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"position\" INTEGER DEFAULT 0\n);",
22613
+ "columns": {
22614
+ "id": {
22615
+ "type": "UUID",
22616
+ "primaryKey": true,
22617
+ "referenceKind": "id",
22618
+ "notNull": true
22619
+ },
22620
+ "slug": {
22621
+ "type": "TEXT",
22622
+ "notNull": true
22623
+ },
22624
+ "context": {
22625
+ "type": "TEXT",
22626
+ "notNull": true,
22627
+ "default": ""
22628
+ },
22629
+ "created_at": {
22630
+ "type": "TIMESTAMP",
22631
+ "notNull": true,
22632
+ "default": "current_timestamp"
22633
+ },
22634
+ "updated_at": {
22635
+ "type": "TIMESTAMP",
22636
+ "notNull": true,
22637
+ "default": "current_timestamp"
22638
+ },
22639
+ "position": {
22640
+ "type": "INTEGER",
22641
+ "notNull": false,
22642
+ "unique": false,
22643
+ "default": 0
22644
+ }
22645
+ },
22646
+ "indexes": [{
22647
+ "name": "issue_2070_postgres_hydration_probes_id_idx",
22648
+ "columns": ["id"]
22649
+ }, {
22650
+ "name": "issue_2070_postgres_hydration_probes_slug_context_idx",
22651
+ "columns": ["slug", "context"],
22652
+ "unique": true
22653
+ }],
22654
+ "version": "90389635"
22655
+ }
22656
+ },
22657
+ "@happyvertical/smrt-core:Issue2070PostgresHydrationProbeCollection": {
22658
+ "name": "issue2070postgreshydrationprobecollection",
22659
+ "className": "Issue2070PostgresHydrationProbeCollection",
22660
+ "qualifiedName": "@happyvertical/smrt-core:Issue2070PostgresHydrationProbeCollection",
22661
+ "collection": "issue2070postgreshydrationprobes",
22662
+ "filePath": "packages/core/src/__tests__/issue-2070-postgres-hydration.optional.test.ts",
22663
+ "packageName": "@happyvertical/smrt-core",
22664
+ "fields": {},
22665
+ "methods": {},
22666
+ "decoratorConfig": { "tableName": "issue_2070_postgres_hydration_probes" },
22667
+ "extends": "SmrtCollection",
22668
+ "extendsTypeArg": "Issue2070PostgresHydrationProbe",
22669
+ "exportName": "Issue2070PostgresHydrationProbeCollection",
22670
+ "collectionExportName": "Issue2070PostgresHydrationProbeCollectionCollection",
22671
+ "schema": {
22672
+ "tableName": "issue_2070_postgres_hydration_probes",
22673
+ "ddl": "CREATE TABLE IF NOT EXISTS \"issue_2070_postgres_hydration_probes\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
22674
+ "columns": {
22675
+ "id": {
22676
+ "type": "UUID",
22677
+ "primaryKey": true,
22678
+ "referenceKind": "id",
22679
+ "notNull": true
22680
+ },
22681
+ "slug": {
22682
+ "type": "TEXT",
22683
+ "notNull": true
22684
+ },
22685
+ "context": {
22686
+ "type": "TEXT",
22687
+ "notNull": true,
22688
+ "default": ""
22689
+ },
22690
+ "created_at": {
22691
+ "type": "TIMESTAMP",
22692
+ "notNull": true,
22693
+ "default": "current_timestamp"
22694
+ },
22695
+ "updated_at": {
22696
+ "type": "TIMESTAMP",
22697
+ "notNull": true,
22698
+ "default": "current_timestamp"
22699
+ }
22700
+ },
22701
+ "indexes": [{
22702
+ "name": "issue_2070_postgres_hydration_probes_id_idx",
22703
+ "columns": ["id"]
22704
+ }, {
22705
+ "name": "issue_2070_postgres_hydration_probes_slug_context_idx",
22706
+ "columns": ["slug", "context"],
22707
+ "unique": true
22708
+ }],
22709
+ "version": "b8fb8be0"
22710
+ }
22711
+ },
22712
+ "@happyvertical/smrt-core:Issue2070HydrationProbe": {
22713
+ "name": "issue2070hydrationprobe",
22714
+ "className": "Issue2070HydrationProbe",
22715
+ "qualifiedName": "@happyvertical/smrt-core:Issue2070HydrationProbe",
22716
+ "collection": "issue2070hydrationprobes",
22717
+ "filePath": "packages/core/src/__tests__/issue-2070-serialized-hydration.test.ts",
22718
+ "packageName": "@happyvertical/smrt-core",
22719
+ "fields": { "position": {
22720
+ "type": "integer",
22721
+ "required": false,
22722
+ "default": 0
22723
+ } },
22724
+ "methods": { "initialize": {
22725
+ "name": "initialize",
22726
+ "async": true,
22727
+ "parameters": [],
22728
+ "returnType": "Promise",
22729
+ "isStatic": false,
22730
+ "isPublic": true
22731
+ } },
22732
+ "decoratorConfig": { "tableName": "issue_2070_hydration_probes" },
22733
+ "extends": "SmrtObject",
22734
+ "exportName": "Issue2070HydrationProbe",
22735
+ "collectionExportName": "Issue2070HydrationProbeCollection",
22736
+ "schema": {
22737
+ "tableName": "issue_2070_hydration_probes",
22738
+ "ddl": "CREATE TABLE IF NOT EXISTS \"issue_2070_hydration_probes\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"position\" INTEGER DEFAULT 0\n);",
22739
+ "columns": {
22740
+ "id": {
22741
+ "type": "UUID",
22742
+ "primaryKey": true,
22743
+ "referenceKind": "id",
22744
+ "notNull": true
22745
+ },
22746
+ "slug": {
22747
+ "type": "TEXT",
22748
+ "notNull": true
22749
+ },
22750
+ "context": {
22751
+ "type": "TEXT",
22752
+ "notNull": true,
22753
+ "default": ""
22754
+ },
22755
+ "created_at": {
22756
+ "type": "TIMESTAMP",
22757
+ "notNull": true,
22758
+ "default": "current_timestamp"
22759
+ },
22760
+ "updated_at": {
22761
+ "type": "TIMESTAMP",
22762
+ "notNull": true,
22763
+ "default": "current_timestamp"
22764
+ },
22765
+ "position": {
22766
+ "type": "INTEGER",
22767
+ "notNull": false,
22768
+ "unique": false,
22769
+ "default": 0
22770
+ }
22771
+ },
22772
+ "indexes": [{
22773
+ "name": "issue_2070_hydration_probes_id_idx",
22774
+ "columns": ["id"]
22775
+ }, {
22776
+ "name": "issue_2070_hydration_probes_slug_context_idx",
22777
+ "columns": ["slug", "context"],
22778
+ "unique": true
22779
+ }],
22780
+ "version": "d2c72d27"
22781
+ }
22782
+ },
22783
+ "@happyvertical/smrt-core:Issue2070HydrationProbeCollection": {
22784
+ "name": "issue2070hydrationprobecollection",
22785
+ "className": "Issue2070HydrationProbeCollection",
22786
+ "qualifiedName": "@happyvertical/smrt-core:Issue2070HydrationProbeCollection",
22787
+ "collection": "issue2070hydrationprobes",
22788
+ "filePath": "packages/core/src/__tests__/issue-2070-serialized-hydration.test.ts",
22789
+ "packageName": "@happyvertical/smrt-core",
22790
+ "fields": {},
22791
+ "methods": {},
22792
+ "decoratorConfig": { "tableName": "issue_2070_hydration_probes" },
22793
+ "extends": "SmrtCollection",
22794
+ "extendsTypeArg": "Issue2070HydrationProbe",
22795
+ "exportName": "Issue2070HydrationProbeCollection",
22796
+ "collectionExportName": "Issue2070HydrationProbeCollectionCollection",
22797
+ "schema": {
22798
+ "tableName": "issue_2070_hydration_probes",
22799
+ "ddl": "CREATE TABLE IF NOT EXISTS \"issue_2070_hydration_probes\" (\n \"id\" UUID PRIMARY KEY NOT NULL,\n \"slug\" TEXT NOT NULL,\n \"context\" TEXT NOT NULL DEFAULT '',\n \"created_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp,\n \"updated_at\" TIMESTAMP NOT NULL DEFAULT current_timestamp\n);",
22800
+ "columns": {
22801
+ "id": {
22802
+ "type": "UUID",
22803
+ "primaryKey": true,
22804
+ "referenceKind": "id",
22805
+ "notNull": true
22806
+ },
22807
+ "slug": {
22808
+ "type": "TEXT",
22809
+ "notNull": true
22810
+ },
22811
+ "context": {
22812
+ "type": "TEXT",
22813
+ "notNull": true,
22814
+ "default": ""
22815
+ },
22816
+ "created_at": {
22817
+ "type": "TIMESTAMP",
22818
+ "notNull": true,
22819
+ "default": "current_timestamp"
22820
+ },
22821
+ "updated_at": {
22822
+ "type": "TIMESTAMP",
22823
+ "notNull": true,
22824
+ "default": "current_timestamp"
22825
+ }
22826
+ },
22827
+ "indexes": [{
22828
+ "name": "issue_2070_hydration_probes_id_idx",
22829
+ "columns": ["id"]
22830
+ }, {
22831
+ "name": "issue_2070_hydration_probes_slug_context_idx",
22832
+ "columns": ["slug", "context"],
22833
+ "unique": true
22834
+ }],
22835
+ "version": "7c77ab56"
22836
+ }
22837
+ },
22586
22838
  "@happyvertical/smrt-core:CouncilIssue208": {
22587
22839
  "name": "councilissue208",
22588
22840
  "className": "CouncilIssue208",