@vrplatform/graphql 1.1.25 → 1.1.26
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/build/main/gqty/schema.generated.d.ts +269 -36
- package/build/main/gqty/schema.generated.js +104 -16
- package/build/module/gqty/schema.generated.d.ts +269 -36
- package/build/module/gqty/schema.generated.js +104 -16
- package/package.json +1 -1
- package/src/gqty/schema.generated.d.ts +269 -36
- package/src/gqty/schema.generated.js +104 -16
|
@@ -6124,6 +6124,26 @@ export const generatedSchema = {
|
|
|
6124
6124
|
where: "file_storage_bool_exp",
|
|
6125
6125
|
},
|
|
6126
6126
|
},
|
|
6127
|
+
flows: {
|
|
6128
|
+
__type: "[core_flow!]!",
|
|
6129
|
+
__args: {
|
|
6130
|
+
distinct_on: "[core_flow_select_column!]",
|
|
6131
|
+
limit: "Int",
|
|
6132
|
+
offset: "Int",
|
|
6133
|
+
order_by: "[core_flow_order_by!]",
|
|
6134
|
+
where: "core_flow_bool_exp",
|
|
6135
|
+
},
|
|
6136
|
+
},
|
|
6137
|
+
flows_aggregate: {
|
|
6138
|
+
__type: "core_flow_aggregate!",
|
|
6139
|
+
__args: {
|
|
6140
|
+
distinct_on: "[core_flow_select_column!]",
|
|
6141
|
+
limit: "Int",
|
|
6142
|
+
offset: "Int",
|
|
6143
|
+
order_by: "[core_flow_order_by!]",
|
|
6144
|
+
where: "core_flow_bool_exp",
|
|
6145
|
+
},
|
|
6146
|
+
},
|
|
6127
6147
|
icon: { __type: "String" },
|
|
6128
6148
|
id: { __type: "uuid!" },
|
|
6129
6149
|
lastFetch: { __type: "timestamptz" },
|
|
@@ -6438,6 +6458,8 @@ export const generatedSchema = {
|
|
|
6438
6458
|
fetchStatus: { __type: "syncStatus_enum_comparison_exp" },
|
|
6439
6459
|
files: { __type: "file_storage_bool_exp" },
|
|
6440
6460
|
files_aggregate: { __type: "file_storage_aggregate_bool_exp" },
|
|
6461
|
+
flows: { __type: "core_flow_bool_exp" },
|
|
6462
|
+
flows_aggregate: { __type: "core_flow_aggregate_bool_exp" },
|
|
6441
6463
|
icon: { __type: "String_comparison_exp" },
|
|
6442
6464
|
id: { __type: "uuid_comparison_exp" },
|
|
6443
6465
|
lastFetch: { __type: "timestamptz_comparison_exp" },
|
|
@@ -6506,6 +6528,7 @@ export const generatedSchema = {
|
|
|
6506
6528
|
fetchNext: { __type: "timestamptz" },
|
|
6507
6529
|
fetchStatus: { __type: "syncStatus_enum" },
|
|
6508
6530
|
files: { __type: "file_storage_arr_rel_insert_input" },
|
|
6531
|
+
flows: { __type: "core_flow_arr_rel_insert_input" },
|
|
6509
6532
|
icon: { __type: "String" },
|
|
6510
6533
|
id: { __type: "uuid" },
|
|
6511
6534
|
lastFetch: { __type: "timestamptz" },
|
|
@@ -6619,6 +6642,7 @@ export const generatedSchema = {
|
|
|
6619
6642
|
fetchNext: { __type: "order_by" },
|
|
6620
6643
|
fetchStatus: { __type: "order_by" },
|
|
6621
6644
|
files_aggregate: { __type: "file_storage_aggregate_order_by" },
|
|
6645
|
+
flows_aggregate: { __type: "core_flow_aggregate_order_by" },
|
|
6622
6646
|
icon: { __type: "order_by" },
|
|
6623
6647
|
id: { __type: "order_by" },
|
|
6624
6648
|
lastFetch: { __type: "order_by" },
|
|
@@ -7423,6 +7447,15 @@ export const generatedSchema = {
|
|
|
7423
7447
|
aggregate: { __type: "core_flow_aggregate_fields" },
|
|
7424
7448
|
nodes: { __type: "[core_flow!]!" },
|
|
7425
7449
|
},
|
|
7450
|
+
core_flow_aggregate_bool_exp: {
|
|
7451
|
+
count: { __type: "core_flow_aggregate_bool_exp_count" },
|
|
7452
|
+
},
|
|
7453
|
+
core_flow_aggregate_bool_exp_count: {
|
|
7454
|
+
arguments: { __type: "[core_flow_select_column!]" },
|
|
7455
|
+
distinct: { __type: "Boolean" },
|
|
7456
|
+
filter: { __type: "core_flow_bool_exp" },
|
|
7457
|
+
predicate: { __type: "Int_comparison_exp!" },
|
|
7458
|
+
},
|
|
7426
7459
|
core_flow_aggregate_fields: {
|
|
7427
7460
|
__typename: { __type: "String!" },
|
|
7428
7461
|
count: {
|
|
@@ -7432,10 +7465,19 @@ export const generatedSchema = {
|
|
|
7432
7465
|
max: { __type: "core_flow_max_fields" },
|
|
7433
7466
|
min: { __type: "core_flow_min_fields" },
|
|
7434
7467
|
},
|
|
7468
|
+
core_flow_aggregate_order_by: {
|
|
7469
|
+
count: { __type: "order_by" },
|
|
7470
|
+
max: { __type: "core_flow_max_order_by" },
|
|
7471
|
+
min: { __type: "core_flow_min_order_by" },
|
|
7472
|
+
},
|
|
7435
7473
|
core_flow_append_input: {
|
|
7436
7474
|
mapping_schema: { __type: "jsonb" },
|
|
7437
7475
|
setting_schema: { __type: "jsonb" },
|
|
7438
7476
|
},
|
|
7477
|
+
core_flow_arr_rel_insert_input: {
|
|
7478
|
+
data: { __type: "[core_flow_insert_input!]!" },
|
|
7479
|
+
on_conflict: { __type: "core_flow_on_conflict" },
|
|
7480
|
+
},
|
|
7439
7481
|
core_flow_bool_exp: {
|
|
7440
7482
|
_and: { __type: "[core_flow_bool_exp!]" },
|
|
7441
7483
|
_not: { __type: "core_flow_bool_exp" },
|
|
@@ -7477,6 +7519,7 @@ export const generatedSchema = {
|
|
|
7477
7519
|
booking_channel_id: { __type: "uuid" },
|
|
7478
7520
|
contact: { __type: "contact" },
|
|
7479
7521
|
contact_id: { __type: "uuid" },
|
|
7522
|
+
createdAt: { __type: "timestamptz!" },
|
|
7480
7523
|
flow: { __type: "core_flow!" },
|
|
7481
7524
|
flow_id: { __type: "uuid!" },
|
|
7482
7525
|
id: { __type: "uuid!" },
|
|
@@ -7488,7 +7531,8 @@ export const generatedSchema = {
|
|
|
7488
7531
|
source: { __type: "source!" },
|
|
7489
7532
|
source_id: { __type: "uuid!" },
|
|
7490
7533
|
tenant: { __type: "tenant!" },
|
|
7491
|
-
|
|
7534
|
+
tenantId: { __type: "uuid!" },
|
|
7535
|
+
updatedAt: { __type: "timestamptz!" },
|
|
7492
7536
|
value: { __type: "jsonb", __args: { path: "String" } },
|
|
7493
7537
|
},
|
|
7494
7538
|
core_flow_mapping_aggregate: {
|
|
@@ -7519,6 +7563,7 @@ export const generatedSchema = {
|
|
|
7519
7563
|
booking_channel_id: { __type: "uuid_comparison_exp" },
|
|
7520
7564
|
contact: { __type: "contact_bool_exp" },
|
|
7521
7565
|
contact_id: { __type: "uuid_comparison_exp" },
|
|
7566
|
+
createdAt: { __type: "timestamptz_comparison_exp" },
|
|
7522
7567
|
flow: { __type: "core_flow_bool_exp" },
|
|
7523
7568
|
flow_id: { __type: "uuid_comparison_exp" },
|
|
7524
7569
|
id: { __type: "uuid_comparison_exp" },
|
|
@@ -7530,7 +7575,8 @@ export const generatedSchema = {
|
|
|
7530
7575
|
source: { __type: "source_bool_exp" },
|
|
7531
7576
|
source_id: { __type: "uuid_comparison_exp" },
|
|
7532
7577
|
tenant: { __type: "tenant_bool_exp" },
|
|
7533
|
-
|
|
7578
|
+
tenantId: { __type: "uuid_comparison_exp" },
|
|
7579
|
+
updatedAt: { __type: "timestamptz_comparison_exp" },
|
|
7534
7580
|
value: { __type: "jsonb_comparison_exp" },
|
|
7535
7581
|
},
|
|
7536
7582
|
core_flow_mapping_delete_at_path_input: { value: { __type: "[String!]" } },
|
|
@@ -7543,6 +7589,7 @@ export const generatedSchema = {
|
|
|
7543
7589
|
booking_channel_id: { __type: "uuid" },
|
|
7544
7590
|
contact: { __type: "contact_obj_rel_insert_input" },
|
|
7545
7591
|
contact_id: { __type: "uuid" },
|
|
7592
|
+
createdAt: { __type: "timestamptz" },
|
|
7546
7593
|
flow: { __type: "core_flow_obj_rel_insert_input" },
|
|
7547
7594
|
flow_id: { __type: "uuid" },
|
|
7548
7595
|
id: { __type: "uuid" },
|
|
@@ -7554,7 +7601,8 @@ export const generatedSchema = {
|
|
|
7554
7601
|
source: { __type: "source_obj_rel_insert_input" },
|
|
7555
7602
|
source_id: { __type: "uuid" },
|
|
7556
7603
|
tenant: { __type: "tenant_obj_rel_insert_input" },
|
|
7557
|
-
|
|
7604
|
+
tenantId: { __type: "uuid" },
|
|
7605
|
+
updatedAt: { __type: "timestamptz" },
|
|
7558
7606
|
value: { __type: "jsonb" },
|
|
7559
7607
|
},
|
|
7560
7608
|
core_flow_mapping_max_fields: {
|
|
@@ -7562,26 +7610,30 @@ export const generatedSchema = {
|
|
|
7562
7610
|
account_id: { __type: "uuid" },
|
|
7563
7611
|
booking_channel_id: { __type: "uuid" },
|
|
7564
7612
|
contact_id: { __type: "uuid" },
|
|
7613
|
+
createdAt: { __type: "timestamptz" },
|
|
7565
7614
|
flow_id: { __type: "uuid" },
|
|
7566
7615
|
id: { __type: "uuid" },
|
|
7567
7616
|
listing_id: { __type: "uuid" },
|
|
7568
7617
|
mapping_key: { __type: "String" },
|
|
7569
7618
|
rate_id: { __type: "uuid" },
|
|
7570
7619
|
source_id: { __type: "uuid" },
|
|
7571
|
-
|
|
7620
|
+
tenantId: { __type: "uuid" },
|
|
7621
|
+
updatedAt: { __type: "timestamptz" },
|
|
7572
7622
|
},
|
|
7573
7623
|
core_flow_mapping_min_fields: {
|
|
7574
7624
|
__typename: { __type: "String!" },
|
|
7575
7625
|
account_id: { __type: "uuid" },
|
|
7576
7626
|
booking_channel_id: { __type: "uuid" },
|
|
7577
7627
|
contact_id: { __type: "uuid" },
|
|
7628
|
+
createdAt: { __type: "timestamptz" },
|
|
7578
7629
|
flow_id: { __type: "uuid" },
|
|
7579
7630
|
id: { __type: "uuid" },
|
|
7580
7631
|
listing_id: { __type: "uuid" },
|
|
7581
7632
|
mapping_key: { __type: "String" },
|
|
7582
7633
|
rate_id: { __type: "uuid" },
|
|
7583
7634
|
source_id: { __type: "uuid" },
|
|
7584
|
-
|
|
7635
|
+
tenantId: { __type: "uuid" },
|
|
7636
|
+
updatedAt: { __type: "timestamptz" },
|
|
7585
7637
|
},
|
|
7586
7638
|
core_flow_mapping_mutation_response: {
|
|
7587
7639
|
__typename: { __type: "String!" },
|
|
@@ -7600,6 +7652,7 @@ export const generatedSchema = {
|
|
|
7600
7652
|
booking_channel_id: { __type: "order_by" },
|
|
7601
7653
|
contact: { __type: "contact_order_by" },
|
|
7602
7654
|
contact_id: { __type: "order_by" },
|
|
7655
|
+
createdAt: { __type: "order_by" },
|
|
7603
7656
|
flow: { __type: "core_flow_order_by" },
|
|
7604
7657
|
flow_id: { __type: "order_by" },
|
|
7605
7658
|
id: { __type: "order_by" },
|
|
@@ -7611,7 +7664,8 @@ export const generatedSchema = {
|
|
|
7611
7664
|
source: { __type: "source_order_by" },
|
|
7612
7665
|
source_id: { __type: "order_by" },
|
|
7613
7666
|
tenant: { __type: "tenant_order_by" },
|
|
7614
|
-
|
|
7667
|
+
tenantId: { __type: "order_by" },
|
|
7668
|
+
updatedAt: { __type: "order_by" },
|
|
7615
7669
|
value: { __type: "order_by" },
|
|
7616
7670
|
},
|
|
7617
7671
|
core_flow_mapping_pk_columns_input: { id: { __type: "uuid!" } },
|
|
@@ -7620,13 +7674,15 @@ export const generatedSchema = {
|
|
|
7620
7674
|
account_id: { __type: "uuid" },
|
|
7621
7675
|
booking_channel_id: { __type: "uuid" },
|
|
7622
7676
|
contact_id: { __type: "uuid" },
|
|
7677
|
+
createdAt: { __type: "timestamptz" },
|
|
7623
7678
|
flow_id: { __type: "uuid" },
|
|
7624
7679
|
id: { __type: "uuid" },
|
|
7625
7680
|
listing_id: { __type: "uuid" },
|
|
7626
7681
|
mapping_key: { __type: "String" },
|
|
7627
7682
|
rate_id: { __type: "uuid" },
|
|
7628
7683
|
source_id: { __type: "uuid" },
|
|
7629
|
-
|
|
7684
|
+
tenantId: { __type: "uuid" },
|
|
7685
|
+
updatedAt: { __type: "timestamptz" },
|
|
7630
7686
|
value: { __type: "jsonb" },
|
|
7631
7687
|
},
|
|
7632
7688
|
core_flow_mapping_stream_cursor_input: {
|
|
@@ -7637,13 +7693,15 @@ export const generatedSchema = {
|
|
|
7637
7693
|
account_id: { __type: "uuid" },
|
|
7638
7694
|
booking_channel_id: { __type: "uuid" },
|
|
7639
7695
|
contact_id: { __type: "uuid" },
|
|
7696
|
+
createdAt: { __type: "timestamptz" },
|
|
7640
7697
|
flow_id: { __type: "uuid" },
|
|
7641
7698
|
id: { __type: "uuid" },
|
|
7642
7699
|
listing_id: { __type: "uuid" },
|
|
7643
7700
|
mapping_key: { __type: "String" },
|
|
7644
7701
|
rate_id: { __type: "uuid" },
|
|
7645
7702
|
source_id: { __type: "uuid" },
|
|
7646
|
-
|
|
7703
|
+
tenantId: { __type: "uuid" },
|
|
7704
|
+
updatedAt: { __type: "timestamptz" },
|
|
7647
7705
|
value: { __type: "jsonb" },
|
|
7648
7706
|
},
|
|
7649
7707
|
core_flow_mapping_updates: {
|
|
@@ -7663,6 +7721,13 @@ export const generatedSchema = {
|
|
|
7663
7721
|
title: { __type: "String" },
|
|
7664
7722
|
type: { __type: "flow_type" },
|
|
7665
7723
|
},
|
|
7724
|
+
core_flow_max_order_by: {
|
|
7725
|
+
app_id: { __type: "order_by" },
|
|
7726
|
+
description: { __type: "order_by" },
|
|
7727
|
+
id: { __type: "order_by" },
|
|
7728
|
+
title: { __type: "order_by" },
|
|
7729
|
+
type: { __type: "order_by" },
|
|
7730
|
+
},
|
|
7666
7731
|
core_flow_min_fields: {
|
|
7667
7732
|
__typename: { __type: "String!" },
|
|
7668
7733
|
app_id: { __type: "String" },
|
|
@@ -7671,6 +7736,13 @@ export const generatedSchema = {
|
|
|
7671
7736
|
title: { __type: "String" },
|
|
7672
7737
|
type: { __type: "flow_type" },
|
|
7673
7738
|
},
|
|
7739
|
+
core_flow_min_order_by: {
|
|
7740
|
+
app_id: { __type: "order_by" },
|
|
7741
|
+
description: { __type: "order_by" },
|
|
7742
|
+
id: { __type: "order_by" },
|
|
7743
|
+
title: { __type: "order_by" },
|
|
7744
|
+
type: { __type: "order_by" },
|
|
7745
|
+
},
|
|
7674
7746
|
core_flow_mutation_response: {
|
|
7675
7747
|
__typename: { __type: "String!" },
|
|
7676
7748
|
affected_rows: { __type: "Int!" },
|
|
@@ -7718,6 +7790,7 @@ export const generatedSchema = {
|
|
|
7718
7790
|
connection_id: { __type: "uuid!" },
|
|
7719
7791
|
contact: { __type: "contact" },
|
|
7720
7792
|
contact_id: { __type: "uuid" },
|
|
7793
|
+
createdAt: { __type: "timestamptz!" },
|
|
7721
7794
|
flow: { __type: "core_flow!" },
|
|
7722
7795
|
flow_id: { __type: "uuid!" },
|
|
7723
7796
|
id: { __type: "uuid!" },
|
|
@@ -7725,7 +7798,8 @@ export const generatedSchema = {
|
|
|
7725
7798
|
listing_id: { __type: "uuid" },
|
|
7726
7799
|
setting_key: { __type: "String!" },
|
|
7727
7800
|
tenant: { __type: "tenant!" },
|
|
7728
|
-
|
|
7801
|
+
tenantId: { __type: "uuid!" },
|
|
7802
|
+
updatedAt: { __type: "timestamptz!" },
|
|
7729
7803
|
value: { __type: "jsonb", __args: { path: "String" } },
|
|
7730
7804
|
},
|
|
7731
7805
|
core_flow_setting_aggregate: {
|
|
@@ -7758,6 +7832,7 @@ export const generatedSchema = {
|
|
|
7758
7832
|
connection_id: { __type: "uuid_comparison_exp" },
|
|
7759
7833
|
contact: { __type: "contact_bool_exp" },
|
|
7760
7834
|
contact_id: { __type: "uuid_comparison_exp" },
|
|
7835
|
+
createdAt: { __type: "timestamptz_comparison_exp" },
|
|
7761
7836
|
flow: { __type: "core_flow_bool_exp" },
|
|
7762
7837
|
flow_id: { __type: "uuid_comparison_exp" },
|
|
7763
7838
|
id: { __type: "uuid_comparison_exp" },
|
|
@@ -7765,7 +7840,8 @@ export const generatedSchema = {
|
|
|
7765
7840
|
listing_id: { __type: "uuid_comparison_exp" },
|
|
7766
7841
|
setting_key: { __type: "String_comparison_exp" },
|
|
7767
7842
|
tenant: { __type: "tenant_bool_exp" },
|
|
7768
|
-
|
|
7843
|
+
tenantId: { __type: "uuid_comparison_exp" },
|
|
7844
|
+
updatedAt: { __type: "timestamptz_comparison_exp" },
|
|
7769
7845
|
value: { __type: "jsonb_comparison_exp" },
|
|
7770
7846
|
},
|
|
7771
7847
|
core_flow_setting_delete_at_path_input: { value: { __type: "[String!]" } },
|
|
@@ -7780,6 +7856,7 @@ export const generatedSchema = {
|
|
|
7780
7856
|
connection_id: { __type: "uuid" },
|
|
7781
7857
|
contact: { __type: "contact_obj_rel_insert_input" },
|
|
7782
7858
|
contact_id: { __type: "uuid" },
|
|
7859
|
+
createdAt: { __type: "timestamptz" },
|
|
7783
7860
|
flow: { __type: "core_flow_obj_rel_insert_input" },
|
|
7784
7861
|
flow_id: { __type: "uuid" },
|
|
7785
7862
|
id: { __type: "uuid" },
|
|
@@ -7787,7 +7864,8 @@ export const generatedSchema = {
|
|
|
7787
7864
|
listing_id: { __type: "uuid" },
|
|
7788
7865
|
setting_key: { __type: "String" },
|
|
7789
7866
|
tenant: { __type: "tenant_obj_rel_insert_input" },
|
|
7790
|
-
|
|
7867
|
+
tenantId: { __type: "uuid" },
|
|
7868
|
+
updatedAt: { __type: "timestamptz" },
|
|
7791
7869
|
value: { __type: "jsonb" },
|
|
7792
7870
|
},
|
|
7793
7871
|
core_flow_setting_max_fields: {
|
|
@@ -7796,11 +7874,13 @@ export const generatedSchema = {
|
|
|
7796
7874
|
booking_channel_id: { __type: "uuid" },
|
|
7797
7875
|
connection_id: { __type: "uuid" },
|
|
7798
7876
|
contact_id: { __type: "uuid" },
|
|
7877
|
+
createdAt: { __type: "timestamptz" },
|
|
7799
7878
|
flow_id: { __type: "uuid" },
|
|
7800
7879
|
id: { __type: "uuid" },
|
|
7801
7880
|
listing_id: { __type: "uuid" },
|
|
7802
7881
|
setting_key: { __type: "String" },
|
|
7803
|
-
|
|
7882
|
+
tenantId: { __type: "uuid" },
|
|
7883
|
+
updatedAt: { __type: "timestamptz" },
|
|
7804
7884
|
},
|
|
7805
7885
|
core_flow_setting_min_fields: {
|
|
7806
7886
|
__typename: { __type: "String!" },
|
|
@@ -7808,11 +7888,13 @@ export const generatedSchema = {
|
|
|
7808
7888
|
booking_channel_id: { __type: "uuid" },
|
|
7809
7889
|
connection_id: { __type: "uuid" },
|
|
7810
7890
|
contact_id: { __type: "uuid" },
|
|
7891
|
+
createdAt: { __type: "timestamptz" },
|
|
7811
7892
|
flow_id: { __type: "uuid" },
|
|
7812
7893
|
id: { __type: "uuid" },
|
|
7813
7894
|
listing_id: { __type: "uuid" },
|
|
7814
7895
|
setting_key: { __type: "String" },
|
|
7815
|
-
|
|
7896
|
+
tenantId: { __type: "uuid" },
|
|
7897
|
+
updatedAt: { __type: "timestamptz" },
|
|
7816
7898
|
},
|
|
7817
7899
|
core_flow_setting_mutation_response: {
|
|
7818
7900
|
__typename: { __type: "String!" },
|
|
@@ -7833,6 +7915,7 @@ export const generatedSchema = {
|
|
|
7833
7915
|
connection_id: { __type: "order_by" },
|
|
7834
7916
|
contact: { __type: "contact_order_by" },
|
|
7835
7917
|
contact_id: { __type: "order_by" },
|
|
7918
|
+
createdAt: { __type: "order_by" },
|
|
7836
7919
|
flow: { __type: "core_flow_order_by" },
|
|
7837
7920
|
flow_id: { __type: "order_by" },
|
|
7838
7921
|
id: { __type: "order_by" },
|
|
@@ -7840,7 +7923,8 @@ export const generatedSchema = {
|
|
|
7840
7923
|
listing_id: { __type: "order_by" },
|
|
7841
7924
|
setting_key: { __type: "order_by" },
|
|
7842
7925
|
tenant: { __type: "tenant_order_by" },
|
|
7843
|
-
|
|
7926
|
+
tenantId: { __type: "order_by" },
|
|
7927
|
+
updatedAt: { __type: "order_by" },
|
|
7844
7928
|
value: { __type: "order_by" },
|
|
7845
7929
|
},
|
|
7846
7930
|
core_flow_setting_pk_columns_input: { id: { __type: "uuid!" } },
|
|
@@ -7850,11 +7934,13 @@ export const generatedSchema = {
|
|
|
7850
7934
|
booking_channel_id: { __type: "uuid" },
|
|
7851
7935
|
connection_id: { __type: "uuid" },
|
|
7852
7936
|
contact_id: { __type: "uuid" },
|
|
7937
|
+
createdAt: { __type: "timestamptz" },
|
|
7853
7938
|
flow_id: { __type: "uuid" },
|
|
7854
7939
|
id: { __type: "uuid" },
|
|
7855
7940
|
listing_id: { __type: "uuid" },
|
|
7856
7941
|
setting_key: { __type: "String" },
|
|
7857
|
-
|
|
7942
|
+
tenantId: { __type: "uuid" },
|
|
7943
|
+
updatedAt: { __type: "timestamptz" },
|
|
7858
7944
|
value: { __type: "jsonb" },
|
|
7859
7945
|
},
|
|
7860
7946
|
core_flow_setting_stream_cursor_input: {
|
|
@@ -7866,11 +7952,13 @@ export const generatedSchema = {
|
|
|
7866
7952
|
booking_channel_id: { __type: "uuid" },
|
|
7867
7953
|
connection_id: { __type: "uuid" },
|
|
7868
7954
|
contact_id: { __type: "uuid" },
|
|
7955
|
+
createdAt: { __type: "timestamptz" },
|
|
7869
7956
|
flow_id: { __type: "uuid" },
|
|
7870
7957
|
id: { __type: "uuid" },
|
|
7871
7958
|
listing_id: { __type: "uuid" },
|
|
7872
7959
|
setting_key: { __type: "String" },
|
|
7873
|
-
|
|
7960
|
+
tenantId: { __type: "uuid" },
|
|
7961
|
+
updatedAt: { __type: "timestamptz" },
|
|
7874
7962
|
value: { __type: "jsonb" },
|
|
7875
7963
|
},
|
|
7876
7964
|
core_flow_setting_updates: {
|