@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
|
@@ -6127,6 +6127,26 @@ exports.generatedSchema = {
|
|
|
6127
6127
|
where: "file_storage_bool_exp",
|
|
6128
6128
|
},
|
|
6129
6129
|
},
|
|
6130
|
+
flows: {
|
|
6131
|
+
__type: "[core_flow!]!",
|
|
6132
|
+
__args: {
|
|
6133
|
+
distinct_on: "[core_flow_select_column!]",
|
|
6134
|
+
limit: "Int",
|
|
6135
|
+
offset: "Int",
|
|
6136
|
+
order_by: "[core_flow_order_by!]",
|
|
6137
|
+
where: "core_flow_bool_exp",
|
|
6138
|
+
},
|
|
6139
|
+
},
|
|
6140
|
+
flows_aggregate: {
|
|
6141
|
+
__type: "core_flow_aggregate!",
|
|
6142
|
+
__args: {
|
|
6143
|
+
distinct_on: "[core_flow_select_column!]",
|
|
6144
|
+
limit: "Int",
|
|
6145
|
+
offset: "Int",
|
|
6146
|
+
order_by: "[core_flow_order_by!]",
|
|
6147
|
+
where: "core_flow_bool_exp",
|
|
6148
|
+
},
|
|
6149
|
+
},
|
|
6130
6150
|
icon: { __type: "String" },
|
|
6131
6151
|
id: { __type: "uuid!" },
|
|
6132
6152
|
lastFetch: { __type: "timestamptz" },
|
|
@@ -6441,6 +6461,8 @@ exports.generatedSchema = {
|
|
|
6441
6461
|
fetchStatus: { __type: "syncStatus_enum_comparison_exp" },
|
|
6442
6462
|
files: { __type: "file_storage_bool_exp" },
|
|
6443
6463
|
files_aggregate: { __type: "file_storage_aggregate_bool_exp" },
|
|
6464
|
+
flows: { __type: "core_flow_bool_exp" },
|
|
6465
|
+
flows_aggregate: { __type: "core_flow_aggregate_bool_exp" },
|
|
6444
6466
|
icon: { __type: "String_comparison_exp" },
|
|
6445
6467
|
id: { __type: "uuid_comparison_exp" },
|
|
6446
6468
|
lastFetch: { __type: "timestamptz_comparison_exp" },
|
|
@@ -6509,6 +6531,7 @@ exports.generatedSchema = {
|
|
|
6509
6531
|
fetchNext: { __type: "timestamptz" },
|
|
6510
6532
|
fetchStatus: { __type: "syncStatus_enum" },
|
|
6511
6533
|
files: { __type: "file_storage_arr_rel_insert_input" },
|
|
6534
|
+
flows: { __type: "core_flow_arr_rel_insert_input" },
|
|
6512
6535
|
icon: { __type: "String" },
|
|
6513
6536
|
id: { __type: "uuid" },
|
|
6514
6537
|
lastFetch: { __type: "timestamptz" },
|
|
@@ -6622,6 +6645,7 @@ exports.generatedSchema = {
|
|
|
6622
6645
|
fetchNext: { __type: "order_by" },
|
|
6623
6646
|
fetchStatus: { __type: "order_by" },
|
|
6624
6647
|
files_aggregate: { __type: "file_storage_aggregate_order_by" },
|
|
6648
|
+
flows_aggregate: { __type: "core_flow_aggregate_order_by" },
|
|
6625
6649
|
icon: { __type: "order_by" },
|
|
6626
6650
|
id: { __type: "order_by" },
|
|
6627
6651
|
lastFetch: { __type: "order_by" },
|
|
@@ -7426,6 +7450,15 @@ exports.generatedSchema = {
|
|
|
7426
7450
|
aggregate: { __type: "core_flow_aggregate_fields" },
|
|
7427
7451
|
nodes: { __type: "[core_flow!]!" },
|
|
7428
7452
|
},
|
|
7453
|
+
core_flow_aggregate_bool_exp: {
|
|
7454
|
+
count: { __type: "core_flow_aggregate_bool_exp_count" },
|
|
7455
|
+
},
|
|
7456
|
+
core_flow_aggregate_bool_exp_count: {
|
|
7457
|
+
arguments: { __type: "[core_flow_select_column!]" },
|
|
7458
|
+
distinct: { __type: "Boolean" },
|
|
7459
|
+
filter: { __type: "core_flow_bool_exp" },
|
|
7460
|
+
predicate: { __type: "Int_comparison_exp!" },
|
|
7461
|
+
},
|
|
7429
7462
|
core_flow_aggregate_fields: {
|
|
7430
7463
|
__typename: { __type: "String!" },
|
|
7431
7464
|
count: {
|
|
@@ -7435,10 +7468,19 @@ exports.generatedSchema = {
|
|
|
7435
7468
|
max: { __type: "core_flow_max_fields" },
|
|
7436
7469
|
min: { __type: "core_flow_min_fields" },
|
|
7437
7470
|
},
|
|
7471
|
+
core_flow_aggregate_order_by: {
|
|
7472
|
+
count: { __type: "order_by" },
|
|
7473
|
+
max: { __type: "core_flow_max_order_by" },
|
|
7474
|
+
min: { __type: "core_flow_min_order_by" },
|
|
7475
|
+
},
|
|
7438
7476
|
core_flow_append_input: {
|
|
7439
7477
|
mapping_schema: { __type: "jsonb" },
|
|
7440
7478
|
setting_schema: { __type: "jsonb" },
|
|
7441
7479
|
},
|
|
7480
|
+
core_flow_arr_rel_insert_input: {
|
|
7481
|
+
data: { __type: "[core_flow_insert_input!]!" },
|
|
7482
|
+
on_conflict: { __type: "core_flow_on_conflict" },
|
|
7483
|
+
},
|
|
7442
7484
|
core_flow_bool_exp: {
|
|
7443
7485
|
_and: { __type: "[core_flow_bool_exp!]" },
|
|
7444
7486
|
_not: { __type: "core_flow_bool_exp" },
|
|
@@ -7480,6 +7522,7 @@ exports.generatedSchema = {
|
|
|
7480
7522
|
booking_channel_id: { __type: "uuid" },
|
|
7481
7523
|
contact: { __type: "contact" },
|
|
7482
7524
|
contact_id: { __type: "uuid" },
|
|
7525
|
+
createdAt: { __type: "timestamptz!" },
|
|
7483
7526
|
flow: { __type: "core_flow!" },
|
|
7484
7527
|
flow_id: { __type: "uuid!" },
|
|
7485
7528
|
id: { __type: "uuid!" },
|
|
@@ -7491,7 +7534,8 @@ exports.generatedSchema = {
|
|
|
7491
7534
|
source: { __type: "source!" },
|
|
7492
7535
|
source_id: { __type: "uuid!" },
|
|
7493
7536
|
tenant: { __type: "tenant!" },
|
|
7494
|
-
|
|
7537
|
+
tenantId: { __type: "uuid!" },
|
|
7538
|
+
updatedAt: { __type: "timestamptz!" },
|
|
7495
7539
|
value: { __type: "jsonb", __args: { path: "String" } },
|
|
7496
7540
|
},
|
|
7497
7541
|
core_flow_mapping_aggregate: {
|
|
@@ -7522,6 +7566,7 @@ exports.generatedSchema = {
|
|
|
7522
7566
|
booking_channel_id: { __type: "uuid_comparison_exp" },
|
|
7523
7567
|
contact: { __type: "contact_bool_exp" },
|
|
7524
7568
|
contact_id: { __type: "uuid_comparison_exp" },
|
|
7569
|
+
createdAt: { __type: "timestamptz_comparison_exp" },
|
|
7525
7570
|
flow: { __type: "core_flow_bool_exp" },
|
|
7526
7571
|
flow_id: { __type: "uuid_comparison_exp" },
|
|
7527
7572
|
id: { __type: "uuid_comparison_exp" },
|
|
@@ -7533,7 +7578,8 @@ exports.generatedSchema = {
|
|
|
7533
7578
|
source: { __type: "source_bool_exp" },
|
|
7534
7579
|
source_id: { __type: "uuid_comparison_exp" },
|
|
7535
7580
|
tenant: { __type: "tenant_bool_exp" },
|
|
7536
|
-
|
|
7581
|
+
tenantId: { __type: "uuid_comparison_exp" },
|
|
7582
|
+
updatedAt: { __type: "timestamptz_comparison_exp" },
|
|
7537
7583
|
value: { __type: "jsonb_comparison_exp" },
|
|
7538
7584
|
},
|
|
7539
7585
|
core_flow_mapping_delete_at_path_input: { value: { __type: "[String!]" } },
|
|
@@ -7546,6 +7592,7 @@ exports.generatedSchema = {
|
|
|
7546
7592
|
booking_channel_id: { __type: "uuid" },
|
|
7547
7593
|
contact: { __type: "contact_obj_rel_insert_input" },
|
|
7548
7594
|
contact_id: { __type: "uuid" },
|
|
7595
|
+
createdAt: { __type: "timestamptz" },
|
|
7549
7596
|
flow: { __type: "core_flow_obj_rel_insert_input" },
|
|
7550
7597
|
flow_id: { __type: "uuid" },
|
|
7551
7598
|
id: { __type: "uuid" },
|
|
@@ -7557,7 +7604,8 @@ exports.generatedSchema = {
|
|
|
7557
7604
|
source: { __type: "source_obj_rel_insert_input" },
|
|
7558
7605
|
source_id: { __type: "uuid" },
|
|
7559
7606
|
tenant: { __type: "tenant_obj_rel_insert_input" },
|
|
7560
|
-
|
|
7607
|
+
tenantId: { __type: "uuid" },
|
|
7608
|
+
updatedAt: { __type: "timestamptz" },
|
|
7561
7609
|
value: { __type: "jsonb" },
|
|
7562
7610
|
},
|
|
7563
7611
|
core_flow_mapping_max_fields: {
|
|
@@ -7565,26 +7613,30 @@ exports.generatedSchema = {
|
|
|
7565
7613
|
account_id: { __type: "uuid" },
|
|
7566
7614
|
booking_channel_id: { __type: "uuid" },
|
|
7567
7615
|
contact_id: { __type: "uuid" },
|
|
7616
|
+
createdAt: { __type: "timestamptz" },
|
|
7568
7617
|
flow_id: { __type: "uuid" },
|
|
7569
7618
|
id: { __type: "uuid" },
|
|
7570
7619
|
listing_id: { __type: "uuid" },
|
|
7571
7620
|
mapping_key: { __type: "String" },
|
|
7572
7621
|
rate_id: { __type: "uuid" },
|
|
7573
7622
|
source_id: { __type: "uuid" },
|
|
7574
|
-
|
|
7623
|
+
tenantId: { __type: "uuid" },
|
|
7624
|
+
updatedAt: { __type: "timestamptz" },
|
|
7575
7625
|
},
|
|
7576
7626
|
core_flow_mapping_min_fields: {
|
|
7577
7627
|
__typename: { __type: "String!" },
|
|
7578
7628
|
account_id: { __type: "uuid" },
|
|
7579
7629
|
booking_channel_id: { __type: "uuid" },
|
|
7580
7630
|
contact_id: { __type: "uuid" },
|
|
7631
|
+
createdAt: { __type: "timestamptz" },
|
|
7581
7632
|
flow_id: { __type: "uuid" },
|
|
7582
7633
|
id: { __type: "uuid" },
|
|
7583
7634
|
listing_id: { __type: "uuid" },
|
|
7584
7635
|
mapping_key: { __type: "String" },
|
|
7585
7636
|
rate_id: { __type: "uuid" },
|
|
7586
7637
|
source_id: { __type: "uuid" },
|
|
7587
|
-
|
|
7638
|
+
tenantId: { __type: "uuid" },
|
|
7639
|
+
updatedAt: { __type: "timestamptz" },
|
|
7588
7640
|
},
|
|
7589
7641
|
core_flow_mapping_mutation_response: {
|
|
7590
7642
|
__typename: { __type: "String!" },
|
|
@@ -7603,6 +7655,7 @@ exports.generatedSchema = {
|
|
|
7603
7655
|
booking_channel_id: { __type: "order_by" },
|
|
7604
7656
|
contact: { __type: "contact_order_by" },
|
|
7605
7657
|
contact_id: { __type: "order_by" },
|
|
7658
|
+
createdAt: { __type: "order_by" },
|
|
7606
7659
|
flow: { __type: "core_flow_order_by" },
|
|
7607
7660
|
flow_id: { __type: "order_by" },
|
|
7608
7661
|
id: { __type: "order_by" },
|
|
@@ -7614,7 +7667,8 @@ exports.generatedSchema = {
|
|
|
7614
7667
|
source: { __type: "source_order_by" },
|
|
7615
7668
|
source_id: { __type: "order_by" },
|
|
7616
7669
|
tenant: { __type: "tenant_order_by" },
|
|
7617
|
-
|
|
7670
|
+
tenantId: { __type: "order_by" },
|
|
7671
|
+
updatedAt: { __type: "order_by" },
|
|
7618
7672
|
value: { __type: "order_by" },
|
|
7619
7673
|
},
|
|
7620
7674
|
core_flow_mapping_pk_columns_input: { id: { __type: "uuid!" } },
|
|
@@ -7623,13 +7677,15 @@ exports.generatedSchema = {
|
|
|
7623
7677
|
account_id: { __type: "uuid" },
|
|
7624
7678
|
booking_channel_id: { __type: "uuid" },
|
|
7625
7679
|
contact_id: { __type: "uuid" },
|
|
7680
|
+
createdAt: { __type: "timestamptz" },
|
|
7626
7681
|
flow_id: { __type: "uuid" },
|
|
7627
7682
|
id: { __type: "uuid" },
|
|
7628
7683
|
listing_id: { __type: "uuid" },
|
|
7629
7684
|
mapping_key: { __type: "String" },
|
|
7630
7685
|
rate_id: { __type: "uuid" },
|
|
7631
7686
|
source_id: { __type: "uuid" },
|
|
7632
|
-
|
|
7687
|
+
tenantId: { __type: "uuid" },
|
|
7688
|
+
updatedAt: { __type: "timestamptz" },
|
|
7633
7689
|
value: { __type: "jsonb" },
|
|
7634
7690
|
},
|
|
7635
7691
|
core_flow_mapping_stream_cursor_input: {
|
|
@@ -7640,13 +7696,15 @@ exports.generatedSchema = {
|
|
|
7640
7696
|
account_id: { __type: "uuid" },
|
|
7641
7697
|
booking_channel_id: { __type: "uuid" },
|
|
7642
7698
|
contact_id: { __type: "uuid" },
|
|
7699
|
+
createdAt: { __type: "timestamptz" },
|
|
7643
7700
|
flow_id: { __type: "uuid" },
|
|
7644
7701
|
id: { __type: "uuid" },
|
|
7645
7702
|
listing_id: { __type: "uuid" },
|
|
7646
7703
|
mapping_key: { __type: "String" },
|
|
7647
7704
|
rate_id: { __type: "uuid" },
|
|
7648
7705
|
source_id: { __type: "uuid" },
|
|
7649
|
-
|
|
7706
|
+
tenantId: { __type: "uuid" },
|
|
7707
|
+
updatedAt: { __type: "timestamptz" },
|
|
7650
7708
|
value: { __type: "jsonb" },
|
|
7651
7709
|
},
|
|
7652
7710
|
core_flow_mapping_updates: {
|
|
@@ -7666,6 +7724,13 @@ exports.generatedSchema = {
|
|
|
7666
7724
|
title: { __type: "String" },
|
|
7667
7725
|
type: { __type: "flow_type" },
|
|
7668
7726
|
},
|
|
7727
|
+
core_flow_max_order_by: {
|
|
7728
|
+
app_id: { __type: "order_by" },
|
|
7729
|
+
description: { __type: "order_by" },
|
|
7730
|
+
id: { __type: "order_by" },
|
|
7731
|
+
title: { __type: "order_by" },
|
|
7732
|
+
type: { __type: "order_by" },
|
|
7733
|
+
},
|
|
7669
7734
|
core_flow_min_fields: {
|
|
7670
7735
|
__typename: { __type: "String!" },
|
|
7671
7736
|
app_id: { __type: "String" },
|
|
@@ -7674,6 +7739,13 @@ exports.generatedSchema = {
|
|
|
7674
7739
|
title: { __type: "String" },
|
|
7675
7740
|
type: { __type: "flow_type" },
|
|
7676
7741
|
},
|
|
7742
|
+
core_flow_min_order_by: {
|
|
7743
|
+
app_id: { __type: "order_by" },
|
|
7744
|
+
description: { __type: "order_by" },
|
|
7745
|
+
id: { __type: "order_by" },
|
|
7746
|
+
title: { __type: "order_by" },
|
|
7747
|
+
type: { __type: "order_by" },
|
|
7748
|
+
},
|
|
7677
7749
|
core_flow_mutation_response: {
|
|
7678
7750
|
__typename: { __type: "String!" },
|
|
7679
7751
|
affected_rows: { __type: "Int!" },
|
|
@@ -7721,6 +7793,7 @@ exports.generatedSchema = {
|
|
|
7721
7793
|
connection_id: { __type: "uuid!" },
|
|
7722
7794
|
contact: { __type: "contact" },
|
|
7723
7795
|
contact_id: { __type: "uuid" },
|
|
7796
|
+
createdAt: { __type: "timestamptz!" },
|
|
7724
7797
|
flow: { __type: "core_flow!" },
|
|
7725
7798
|
flow_id: { __type: "uuid!" },
|
|
7726
7799
|
id: { __type: "uuid!" },
|
|
@@ -7728,7 +7801,8 @@ exports.generatedSchema = {
|
|
|
7728
7801
|
listing_id: { __type: "uuid" },
|
|
7729
7802
|
setting_key: { __type: "String!" },
|
|
7730
7803
|
tenant: { __type: "tenant!" },
|
|
7731
|
-
|
|
7804
|
+
tenantId: { __type: "uuid!" },
|
|
7805
|
+
updatedAt: { __type: "timestamptz!" },
|
|
7732
7806
|
value: { __type: "jsonb", __args: { path: "String" } },
|
|
7733
7807
|
},
|
|
7734
7808
|
core_flow_setting_aggregate: {
|
|
@@ -7761,6 +7835,7 @@ exports.generatedSchema = {
|
|
|
7761
7835
|
connection_id: { __type: "uuid_comparison_exp" },
|
|
7762
7836
|
contact: { __type: "contact_bool_exp" },
|
|
7763
7837
|
contact_id: { __type: "uuid_comparison_exp" },
|
|
7838
|
+
createdAt: { __type: "timestamptz_comparison_exp" },
|
|
7764
7839
|
flow: { __type: "core_flow_bool_exp" },
|
|
7765
7840
|
flow_id: { __type: "uuid_comparison_exp" },
|
|
7766
7841
|
id: { __type: "uuid_comparison_exp" },
|
|
@@ -7768,7 +7843,8 @@ exports.generatedSchema = {
|
|
|
7768
7843
|
listing_id: { __type: "uuid_comparison_exp" },
|
|
7769
7844
|
setting_key: { __type: "String_comparison_exp" },
|
|
7770
7845
|
tenant: { __type: "tenant_bool_exp" },
|
|
7771
|
-
|
|
7846
|
+
tenantId: { __type: "uuid_comparison_exp" },
|
|
7847
|
+
updatedAt: { __type: "timestamptz_comparison_exp" },
|
|
7772
7848
|
value: { __type: "jsonb_comparison_exp" },
|
|
7773
7849
|
},
|
|
7774
7850
|
core_flow_setting_delete_at_path_input: { value: { __type: "[String!]" } },
|
|
@@ -7783,6 +7859,7 @@ exports.generatedSchema = {
|
|
|
7783
7859
|
connection_id: { __type: "uuid" },
|
|
7784
7860
|
contact: { __type: "contact_obj_rel_insert_input" },
|
|
7785
7861
|
contact_id: { __type: "uuid" },
|
|
7862
|
+
createdAt: { __type: "timestamptz" },
|
|
7786
7863
|
flow: { __type: "core_flow_obj_rel_insert_input" },
|
|
7787
7864
|
flow_id: { __type: "uuid" },
|
|
7788
7865
|
id: { __type: "uuid" },
|
|
@@ -7790,7 +7867,8 @@ exports.generatedSchema = {
|
|
|
7790
7867
|
listing_id: { __type: "uuid" },
|
|
7791
7868
|
setting_key: { __type: "String" },
|
|
7792
7869
|
tenant: { __type: "tenant_obj_rel_insert_input" },
|
|
7793
|
-
|
|
7870
|
+
tenantId: { __type: "uuid" },
|
|
7871
|
+
updatedAt: { __type: "timestamptz" },
|
|
7794
7872
|
value: { __type: "jsonb" },
|
|
7795
7873
|
},
|
|
7796
7874
|
core_flow_setting_max_fields: {
|
|
@@ -7799,11 +7877,13 @@ exports.generatedSchema = {
|
|
|
7799
7877
|
booking_channel_id: { __type: "uuid" },
|
|
7800
7878
|
connection_id: { __type: "uuid" },
|
|
7801
7879
|
contact_id: { __type: "uuid" },
|
|
7880
|
+
createdAt: { __type: "timestamptz" },
|
|
7802
7881
|
flow_id: { __type: "uuid" },
|
|
7803
7882
|
id: { __type: "uuid" },
|
|
7804
7883
|
listing_id: { __type: "uuid" },
|
|
7805
7884
|
setting_key: { __type: "String" },
|
|
7806
|
-
|
|
7885
|
+
tenantId: { __type: "uuid" },
|
|
7886
|
+
updatedAt: { __type: "timestamptz" },
|
|
7807
7887
|
},
|
|
7808
7888
|
core_flow_setting_min_fields: {
|
|
7809
7889
|
__typename: { __type: "String!" },
|
|
@@ -7811,11 +7891,13 @@ exports.generatedSchema = {
|
|
|
7811
7891
|
booking_channel_id: { __type: "uuid" },
|
|
7812
7892
|
connection_id: { __type: "uuid" },
|
|
7813
7893
|
contact_id: { __type: "uuid" },
|
|
7894
|
+
createdAt: { __type: "timestamptz" },
|
|
7814
7895
|
flow_id: { __type: "uuid" },
|
|
7815
7896
|
id: { __type: "uuid" },
|
|
7816
7897
|
listing_id: { __type: "uuid" },
|
|
7817
7898
|
setting_key: { __type: "String" },
|
|
7818
|
-
|
|
7899
|
+
tenantId: { __type: "uuid" },
|
|
7900
|
+
updatedAt: { __type: "timestamptz" },
|
|
7819
7901
|
},
|
|
7820
7902
|
core_flow_setting_mutation_response: {
|
|
7821
7903
|
__typename: { __type: "String!" },
|
|
@@ -7836,6 +7918,7 @@ exports.generatedSchema = {
|
|
|
7836
7918
|
connection_id: { __type: "order_by" },
|
|
7837
7919
|
contact: { __type: "contact_order_by" },
|
|
7838
7920
|
contact_id: { __type: "order_by" },
|
|
7921
|
+
createdAt: { __type: "order_by" },
|
|
7839
7922
|
flow: { __type: "core_flow_order_by" },
|
|
7840
7923
|
flow_id: { __type: "order_by" },
|
|
7841
7924
|
id: { __type: "order_by" },
|
|
@@ -7843,7 +7926,8 @@ exports.generatedSchema = {
|
|
|
7843
7926
|
listing_id: { __type: "order_by" },
|
|
7844
7927
|
setting_key: { __type: "order_by" },
|
|
7845
7928
|
tenant: { __type: "tenant_order_by" },
|
|
7846
|
-
|
|
7929
|
+
tenantId: { __type: "order_by" },
|
|
7930
|
+
updatedAt: { __type: "order_by" },
|
|
7847
7931
|
value: { __type: "order_by" },
|
|
7848
7932
|
},
|
|
7849
7933
|
core_flow_setting_pk_columns_input: { id: { __type: "uuid!" } },
|
|
@@ -7853,11 +7937,13 @@ exports.generatedSchema = {
|
|
|
7853
7937
|
booking_channel_id: { __type: "uuid" },
|
|
7854
7938
|
connection_id: { __type: "uuid" },
|
|
7855
7939
|
contact_id: { __type: "uuid" },
|
|
7940
|
+
createdAt: { __type: "timestamptz" },
|
|
7856
7941
|
flow_id: { __type: "uuid" },
|
|
7857
7942
|
id: { __type: "uuid" },
|
|
7858
7943
|
listing_id: { __type: "uuid" },
|
|
7859
7944
|
setting_key: { __type: "String" },
|
|
7860
|
-
|
|
7945
|
+
tenantId: { __type: "uuid" },
|
|
7946
|
+
updatedAt: { __type: "timestamptz" },
|
|
7861
7947
|
value: { __type: "jsonb" },
|
|
7862
7948
|
},
|
|
7863
7949
|
core_flow_setting_stream_cursor_input: {
|
|
@@ -7869,11 +7955,13 @@ exports.generatedSchema = {
|
|
|
7869
7955
|
booking_channel_id: { __type: "uuid" },
|
|
7870
7956
|
connection_id: { __type: "uuid" },
|
|
7871
7957
|
contact_id: { __type: "uuid" },
|
|
7958
|
+
createdAt: { __type: "timestamptz" },
|
|
7872
7959
|
flow_id: { __type: "uuid" },
|
|
7873
7960
|
id: { __type: "uuid" },
|
|
7874
7961
|
listing_id: { __type: "uuid" },
|
|
7875
7962
|
setting_key: { __type: "String" },
|
|
7876
|
-
|
|
7963
|
+
tenantId: { __type: "uuid" },
|
|
7964
|
+
updatedAt: { __type: "timestamptz" },
|
|
7877
7965
|
value: { __type: "jsonb" },
|
|
7878
7966
|
},
|
|
7879
7967
|
core_flow_setting_updates: {
|