@vrplatform/graphql 1.1.41 → 1.1.43
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 +681 -141
- package/build/main/gqty/schema.generated.js +245 -51
- package/build/module/gqty/schema.generated.d.ts +681 -141
- package/build/module/gqty/schema.generated.js +245 -51
- package/package.json +2 -2
- package/src/gqty/schema.generated.d.ts +681 -141
- package/src/gqty/schema.generated.js +249 -51
|
@@ -5702,8 +5702,6 @@ export interface connection_bool_exp {
|
|
|
5702
5702
|
export type connection_constraint =
|
|
5703
5703
|
/** unique or primary key constraint on columns "id" */
|
|
5704
5704
|
| "connection_pkey"
|
|
5705
|
-
/** unique or primary key constraint on columns "name", "tenant_id" */
|
|
5706
|
-
| "connection_tenant_id_name_key"
|
|
5707
5705
|
/** unique or primary key constraint on columns "unique_ref", "app_id", "tenant_id" */
|
|
5708
5706
|
| "connection_tenant_id_unique_ref_app_id_key";
|
|
5709
5707
|
|
|
@@ -6276,6 +6274,7 @@ export interface contact_bool_exp {
|
|
|
6276
6274
|
name?: InputMaybe<String_comparison_exp>;
|
|
6277
6275
|
phone?: InputMaybe<String_comparison_exp>;
|
|
6278
6276
|
pmsStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
6277
|
+
short_ref?: InputMaybe<String_comparison_exp>;
|
|
6279
6278
|
source?: InputMaybe<source_bool_exp>;
|
|
6280
6279
|
sourceId?: InputMaybe<uuid_comparison_exp>;
|
|
6281
6280
|
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
@@ -6300,7 +6299,9 @@ export type contact_constraint =
|
|
|
6300
6299
|
/** unique or primary key constraint on columns "source_id" */
|
|
6301
6300
|
| "contact_source_id_key"
|
|
6302
6301
|
/** unique or primary key constraint on columns "unique_ref", "tenant_id" */
|
|
6303
|
-
| "contact_tenant_id_unique_ref_key"
|
|
6302
|
+
| "contact_tenant_id_unique_ref_key"
|
|
6303
|
+
/** unique or primary key constraint on columns "short_ref", "tenant_id" */
|
|
6304
|
+
| "contact_tenant_short_ref_unq";
|
|
6304
6305
|
|
|
6305
6306
|
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6306
6307
|
export interface contact_delete_at_path_input {
|
|
@@ -6336,6 +6337,8 @@ export interface contact_insert_input {
|
|
|
6336
6337
|
name?: InputMaybe<Scalars["String"]>;
|
|
6337
6338
|
phone?: InputMaybe<Scalars["String"]>;
|
|
6338
6339
|
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
6340
|
+
/** Human-readable system ID (CNT-XXX-XXXX-XXX). */
|
|
6341
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
6339
6342
|
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
6340
6343
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
6341
6344
|
status?: InputMaybe<activeStatus_enum>;
|
|
@@ -6383,6 +6386,7 @@ export interface contact_order_by {
|
|
|
6383
6386
|
name?: InputMaybe<order_by>;
|
|
6384
6387
|
phone?: InputMaybe<order_by>;
|
|
6385
6388
|
pmsStatus?: InputMaybe<order_by>;
|
|
6389
|
+
short_ref?: InputMaybe<order_by>;
|
|
6386
6390
|
source?: InputMaybe<source_order_by>;
|
|
6387
6391
|
sourceId?: InputMaybe<order_by>;
|
|
6388
6392
|
status?: InputMaybe<order_by>;
|
|
@@ -6434,6 +6438,8 @@ export type contact_select_column =
|
|
|
6434
6438
|
/** column name */
|
|
6435
6439
|
| "pmsStatus"
|
|
6436
6440
|
/** column name */
|
|
6441
|
+
| "short_ref"
|
|
6442
|
+
/** column name */
|
|
6437
6443
|
| "sourceId"
|
|
6438
6444
|
/** column name */
|
|
6439
6445
|
| "status"
|
|
@@ -6463,6 +6469,8 @@ export interface contact_set_input {
|
|
|
6463
6469
|
name?: InputMaybe<Scalars["String"]>;
|
|
6464
6470
|
phone?: InputMaybe<Scalars["String"]>;
|
|
6465
6471
|
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
6472
|
+
/** Human-readable system ID (CNT-XXX-XXXX-XXX). */
|
|
6473
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
6466
6474
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
6467
6475
|
status?: InputMaybe<activeStatus_enum>;
|
|
6468
6476
|
taxId?: InputMaybe<Scalars["String"]>;
|
|
@@ -6496,6 +6504,8 @@ export interface contact_stream_cursor_value_input {
|
|
|
6496
6504
|
name?: InputMaybe<Scalars["String"]>;
|
|
6497
6505
|
phone?: InputMaybe<Scalars["String"]>;
|
|
6498
6506
|
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
6507
|
+
/** Human-readable system ID (CNT-XXX-XXXX-XXX). */
|
|
6508
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
6499
6509
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
6500
6510
|
status?: InputMaybe<activeStatus_enum>;
|
|
6501
6511
|
taxId?: InputMaybe<Scalars["String"]>;
|
|
@@ -6533,6 +6543,8 @@ export type contact_update_column =
|
|
|
6533
6543
|
/** column name */
|
|
6534
6544
|
| "pmsStatus"
|
|
6535
6545
|
/** column name */
|
|
6546
|
+
| "short_ref"
|
|
6547
|
+
/** column name */
|
|
6536
6548
|
| "sourceId"
|
|
6537
6549
|
/** column name */
|
|
6538
6550
|
| "status"
|
|
@@ -6734,9 +6746,25 @@ export interface core_change_source_link_updates {
|
|
|
6734
6746
|
}
|
|
6735
6747
|
|
|
6736
6748
|
export interface core_flow_aggregate_bool_exp {
|
|
6749
|
+
bool_and?: InputMaybe<core_flow_aggregate_bool_exp_bool_and>;
|
|
6750
|
+
bool_or?: InputMaybe<core_flow_aggregate_bool_exp_bool_or>;
|
|
6737
6751
|
count?: InputMaybe<core_flow_aggregate_bool_exp_count>;
|
|
6738
6752
|
}
|
|
6739
6753
|
|
|
6754
|
+
export interface core_flow_aggregate_bool_exp_bool_and {
|
|
6755
|
+
arguments: core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns;
|
|
6756
|
+
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
6757
|
+
filter?: InputMaybe<core_flow_bool_exp>;
|
|
6758
|
+
predicate: Boolean_comparison_exp;
|
|
6759
|
+
}
|
|
6760
|
+
|
|
6761
|
+
export interface core_flow_aggregate_bool_exp_bool_or {
|
|
6762
|
+
arguments: core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns;
|
|
6763
|
+
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
6764
|
+
filter?: InputMaybe<core_flow_bool_exp>;
|
|
6765
|
+
predicate: Boolean_comparison_exp;
|
|
6766
|
+
}
|
|
6767
|
+
|
|
6740
6768
|
export interface core_flow_aggregate_bool_exp_count {
|
|
6741
6769
|
arguments?: InputMaybe<Array<core_flow_select_column>>;
|
|
6742
6770
|
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -6754,6 +6782,7 @@ export interface core_flow_aggregate_order_by {
|
|
|
6754
6782
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
6755
6783
|
export interface core_flow_append_input {
|
|
6756
6784
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6785
|
+
run_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6757
6786
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6758
6787
|
}
|
|
6759
6788
|
|
|
@@ -6772,13 +6801,16 @@ export interface core_flow_bool_exp {
|
|
|
6772
6801
|
app_id?: InputMaybe<String_comparison_exp>;
|
|
6773
6802
|
description?: InputMaybe<String_comparison_exp>;
|
|
6774
6803
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
6804
|
+
is_public?: InputMaybe<Boolean_comparison_exp>;
|
|
6775
6805
|
left_type?: InputMaybe<String_comparison_exp>;
|
|
6776
6806
|
mapping_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6777
6807
|
right_type?: InputMaybe<String_comparison_exp>;
|
|
6808
|
+
run_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6778
6809
|
setting_schema?: InputMaybe<jsonb_comparison_exp>;
|
|
6779
6810
|
title?: InputMaybe<String_comparison_exp>;
|
|
6780
6811
|
type?: InputMaybe<flow_type_comparison_exp>;
|
|
6781
6812
|
uniqueRef?: InputMaybe<String_comparison_exp>;
|
|
6813
|
+
use_global_mapping?: InputMaybe<Boolean_comparison_exp>;
|
|
6782
6814
|
}
|
|
6783
6815
|
|
|
6784
6816
|
/** unique or primary key constraints on table "core.flow" */
|
|
@@ -6791,18 +6823,21 @@ export type core_flow_constraint =
|
|
|
6791
6823
|
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6792
6824
|
export interface core_flow_delete_at_path_input {
|
|
6793
6825
|
mapping_schema?: InputMaybe<Array<Scalars["String"]>>;
|
|
6826
|
+
run_schema?: InputMaybe<Array<Scalars["String"]>>;
|
|
6794
6827
|
setting_schema?: InputMaybe<Array<Scalars["String"]>>;
|
|
6795
6828
|
}
|
|
6796
6829
|
|
|
6797
6830
|
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
6798
6831
|
export interface core_flow_delete_elem_input {
|
|
6799
6832
|
mapping_schema?: InputMaybe<Scalars["Int"]>;
|
|
6833
|
+
run_schema?: InputMaybe<Scalars["Int"]>;
|
|
6800
6834
|
setting_schema?: InputMaybe<Scalars["Int"]>;
|
|
6801
6835
|
}
|
|
6802
6836
|
|
|
6803
6837
|
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
6804
6838
|
export interface core_flow_delete_key_input {
|
|
6805
6839
|
mapping_schema?: InputMaybe<Scalars["String"]>;
|
|
6840
|
+
run_schema?: InputMaybe<Scalars["String"]>;
|
|
6806
6841
|
setting_schema?: InputMaybe<Scalars["String"]>;
|
|
6807
6842
|
}
|
|
6808
6843
|
|
|
@@ -6811,13 +6846,16 @@ export interface core_flow_insert_input {
|
|
|
6811
6846
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
6812
6847
|
description?: InputMaybe<Scalars["String"]>;
|
|
6813
6848
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
6849
|
+
is_public?: InputMaybe<Scalars["Boolean"]>;
|
|
6814
6850
|
left_type?: InputMaybe<Scalars["String"]>;
|
|
6815
6851
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6816
6852
|
right_type?: InputMaybe<Scalars["String"]>;
|
|
6853
|
+
run_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6817
6854
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
6818
6855
|
title?: InputMaybe<Scalars["String"]>;
|
|
6819
6856
|
type?: InputMaybe<Scalars["flow_type"]>;
|
|
6820
6857
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
6858
|
+
use_global_mapping?: InputMaybe<Scalars["Boolean"]>;
|
|
6821
6859
|
}
|
|
6822
6860
|
|
|
6823
6861
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
@@ -6834,6 +6872,7 @@ export interface core_flow_mapping_bool_exp {
|
|
|
6834
6872
|
account_id?: InputMaybe<uuid_comparison_exp>;
|
|
6835
6873
|
booking_channel?: InputMaybe<booking_channel_bool_exp>;
|
|
6836
6874
|
booking_channel_id?: InputMaybe<uuid_comparison_exp>;
|
|
6875
|
+
connection_id?: InputMaybe<uuid_comparison_exp>;
|
|
6837
6876
|
contact?: InputMaybe<contact_bool_exp>;
|
|
6838
6877
|
contact_id?: InputMaybe<uuid_comparison_exp>;
|
|
6839
6878
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
@@ -6855,8 +6894,20 @@ export interface core_flow_mapping_bool_exp {
|
|
|
6855
6894
|
|
|
6856
6895
|
/** unique or primary key constraints on table "core.flow_mapping" */
|
|
6857
6896
|
export type core_flow_mapping_constraint =
|
|
6858
|
-
/** unique or primary key constraint on columns "flow_id", "mapping_key", "
|
|
6859
|
-
| "
|
|
6897
|
+
/** unique or primary key constraint on columns "flow_id", "connection_id", "mapping_key", "booking_channel_id" */
|
|
6898
|
+
| "flow_mapping_flow_booking_channel_uq"
|
|
6899
|
+
/** unique or primary key constraint on columns "flow_id", "connection_id", "mapping_key", "contact_id" */
|
|
6900
|
+
| "flow_mapping_flow_contact_uq"
|
|
6901
|
+
/** unique or primary key constraint on columns "connection_id", "mapping_key", "account_id" */
|
|
6902
|
+
| "flow_mapping_global_account_uq"
|
|
6903
|
+
/** unique or primary key constraint on columns "connection_id", "mapping_key", "booking_channel_id" */
|
|
6904
|
+
| "flow_mapping_global_booking_channel_uq"
|
|
6905
|
+
/** unique or primary key constraint on columns "connection_id", "mapping_key", "contact_id" */
|
|
6906
|
+
| "flow_mapping_global_contact_uq"
|
|
6907
|
+
/** unique or primary key constraint on columns "rate_id", "connection_id", "mapping_key" */
|
|
6908
|
+
| "flow_mapping_global_rate_uq"
|
|
6909
|
+
/** unique or primary key constraint on columns "connection_id", "mapping_key", "value" */
|
|
6910
|
+
| "flow_mapping_global_value_uq"
|
|
6860
6911
|
/** unique or primary key constraint on columns "id" */
|
|
6861
6912
|
| "flow_mapping_pkey";
|
|
6862
6913
|
|
|
@@ -6881,6 +6932,7 @@ export interface core_flow_mapping_insert_input {
|
|
|
6881
6932
|
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
6882
6933
|
booking_channel?: InputMaybe<booking_channel_obj_rel_insert_input>;
|
|
6883
6934
|
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
6935
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
6884
6936
|
contact?: InputMaybe<contact_obj_rel_insert_input>;
|
|
6885
6937
|
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
6886
6938
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -6913,6 +6965,7 @@ export interface core_flow_mapping_order_by {
|
|
|
6913
6965
|
account_id?: InputMaybe<order_by>;
|
|
6914
6966
|
booking_channel?: InputMaybe<booking_channel_order_by>;
|
|
6915
6967
|
booking_channel_id?: InputMaybe<order_by>;
|
|
6968
|
+
connection_id?: InputMaybe<order_by>;
|
|
6916
6969
|
contact?: InputMaybe<contact_order_by>;
|
|
6917
6970
|
contact_id?: InputMaybe<order_by>;
|
|
6918
6971
|
createdAt?: InputMaybe<order_by>;
|
|
@@ -6949,6 +7002,8 @@ export type core_flow_mapping_select_column =
|
|
|
6949
7002
|
/** column name */
|
|
6950
7003
|
| "booking_channel_id"
|
|
6951
7004
|
/** column name */
|
|
7005
|
+
| "connection_id"
|
|
7006
|
+
/** column name */
|
|
6952
7007
|
| "contact_id"
|
|
6953
7008
|
/** column name */
|
|
6954
7009
|
| "createdAt"
|
|
@@ -6975,6 +7030,7 @@ export type core_flow_mapping_select_column =
|
|
|
6975
7030
|
export interface core_flow_mapping_set_input {
|
|
6976
7031
|
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
6977
7032
|
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7033
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
6978
7034
|
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
6979
7035
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
6980
7036
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -7000,6 +7056,7 @@ export interface core_flow_mapping_stream_cursor_input {
|
|
|
7000
7056
|
export interface core_flow_mapping_stream_cursor_value_input {
|
|
7001
7057
|
account_id?: InputMaybe<Scalars["uuid"]>;
|
|
7002
7058
|
booking_channel_id?: InputMaybe<Scalars["uuid"]>;
|
|
7059
|
+
connection_id?: InputMaybe<Scalars["uuid"]>;
|
|
7003
7060
|
contact_id?: InputMaybe<Scalars["uuid"]>;
|
|
7004
7061
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
7005
7062
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -7020,6 +7077,8 @@ export type core_flow_mapping_update_column =
|
|
|
7020
7077
|
/** column name */
|
|
7021
7078
|
| "booking_channel_id"
|
|
7022
7079
|
/** column name */
|
|
7080
|
+
| "connection_id"
|
|
7081
|
+
/** column name */
|
|
7023
7082
|
| "contact_id"
|
|
7024
7083
|
/** column name */
|
|
7025
7084
|
| "createdAt"
|
|
@@ -7102,13 +7161,16 @@ export interface core_flow_order_by {
|
|
|
7102
7161
|
app_id?: InputMaybe<order_by>;
|
|
7103
7162
|
description?: InputMaybe<order_by>;
|
|
7104
7163
|
id?: InputMaybe<order_by>;
|
|
7164
|
+
is_public?: InputMaybe<order_by>;
|
|
7105
7165
|
left_type?: InputMaybe<order_by>;
|
|
7106
7166
|
mapping_schema?: InputMaybe<order_by>;
|
|
7107
7167
|
right_type?: InputMaybe<order_by>;
|
|
7168
|
+
run_schema?: InputMaybe<order_by>;
|
|
7108
7169
|
setting_schema?: InputMaybe<order_by>;
|
|
7109
7170
|
title?: InputMaybe<order_by>;
|
|
7110
7171
|
type?: InputMaybe<order_by>;
|
|
7111
7172
|
uniqueRef?: InputMaybe<order_by>;
|
|
7173
|
+
use_global_mapping?: InputMaybe<order_by>;
|
|
7112
7174
|
}
|
|
7113
7175
|
|
|
7114
7176
|
/** primary key columns input for table: core.flow */
|
|
@@ -7119,6 +7181,7 @@ export interface core_flow_pk_columns_input {
|
|
|
7119
7181
|
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7120
7182
|
export interface core_flow_prepend_input {
|
|
7121
7183
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7184
|
+
run_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7122
7185
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7123
7186
|
}
|
|
7124
7187
|
|
|
@@ -7131,32 +7194,55 @@ export type core_flow_select_column =
|
|
|
7131
7194
|
/** column name */
|
|
7132
7195
|
| "id"
|
|
7133
7196
|
/** column name */
|
|
7197
|
+
| "is_public"
|
|
7198
|
+
/** column name */
|
|
7134
7199
|
| "left_type"
|
|
7135
7200
|
/** column name */
|
|
7136
7201
|
| "mapping_schema"
|
|
7137
7202
|
/** column name */
|
|
7138
7203
|
| "right_type"
|
|
7139
7204
|
/** column name */
|
|
7205
|
+
| "run_schema"
|
|
7206
|
+
/** column name */
|
|
7140
7207
|
| "setting_schema"
|
|
7141
7208
|
/** column name */
|
|
7142
7209
|
| "title"
|
|
7143
7210
|
/** column name */
|
|
7144
7211
|
| "type"
|
|
7145
7212
|
/** column name */
|
|
7146
|
-
| "uniqueRef"
|
|
7213
|
+
| "uniqueRef"
|
|
7214
|
+
/** column name */
|
|
7215
|
+
| "use_global_mapping";
|
|
7216
|
+
|
|
7217
|
+
/** select "core_flow_aggregate_bool_exp_bool_and_arguments_columns" columns of table "core.flow" */
|
|
7218
|
+
export type core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns =
|
|
7219
|
+
/** column name */
|
|
7220
|
+
| "is_public"
|
|
7221
|
+
/** column name */
|
|
7222
|
+
| "use_global_mapping";
|
|
7223
|
+
|
|
7224
|
+
/** select "core_flow_aggregate_bool_exp_bool_or_arguments_columns" columns of table "core.flow" */
|
|
7225
|
+
export type core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns =
|
|
7226
|
+
/** column name */
|
|
7227
|
+
| "is_public"
|
|
7228
|
+
/** column name */
|
|
7229
|
+
| "use_global_mapping";
|
|
7147
7230
|
|
|
7148
7231
|
/** input type for updating data in table "core.flow" */
|
|
7149
7232
|
export interface core_flow_set_input {
|
|
7150
7233
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
7151
7234
|
description?: InputMaybe<Scalars["String"]>;
|
|
7152
7235
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7236
|
+
is_public?: InputMaybe<Scalars["Boolean"]>;
|
|
7153
7237
|
left_type?: InputMaybe<Scalars["String"]>;
|
|
7154
7238
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7155
7239
|
right_type?: InputMaybe<Scalars["String"]>;
|
|
7240
|
+
run_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7156
7241
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7157
7242
|
title?: InputMaybe<Scalars["String"]>;
|
|
7158
7243
|
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7159
7244
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7245
|
+
use_global_mapping?: InputMaybe<Scalars["Boolean"]>;
|
|
7160
7246
|
}
|
|
7161
7247
|
|
|
7162
7248
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
@@ -7411,13 +7497,16 @@ export interface core_flow_stream_cursor_value_input {
|
|
|
7411
7497
|
app_id?: InputMaybe<Scalars["String"]>;
|
|
7412
7498
|
description?: InputMaybe<Scalars["String"]>;
|
|
7413
7499
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7500
|
+
is_public?: InputMaybe<Scalars["Boolean"]>;
|
|
7414
7501
|
left_type?: InputMaybe<Scalars["String"]>;
|
|
7415
7502
|
mapping_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7416
7503
|
right_type?: InputMaybe<Scalars["String"]>;
|
|
7504
|
+
run_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7417
7505
|
setting_schema?: InputMaybe<Scalars["jsonb"]>;
|
|
7418
7506
|
title?: InputMaybe<Scalars["String"]>;
|
|
7419
7507
|
type?: InputMaybe<Scalars["flow_type"]>;
|
|
7420
7508
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7509
|
+
use_global_mapping?: InputMaybe<Scalars["Boolean"]>;
|
|
7421
7510
|
}
|
|
7422
7511
|
|
|
7423
7512
|
/** update columns of table "core.flow" */
|
|
@@ -7429,19 +7518,25 @@ export type core_flow_update_column =
|
|
|
7429
7518
|
/** column name */
|
|
7430
7519
|
| "id"
|
|
7431
7520
|
/** column name */
|
|
7521
|
+
| "is_public"
|
|
7522
|
+
/** column name */
|
|
7432
7523
|
| "left_type"
|
|
7433
7524
|
/** column name */
|
|
7434
7525
|
| "mapping_schema"
|
|
7435
7526
|
/** column name */
|
|
7436
7527
|
| "right_type"
|
|
7437
7528
|
/** column name */
|
|
7529
|
+
| "run_schema"
|
|
7530
|
+
/** column name */
|
|
7438
7531
|
| "setting_schema"
|
|
7439
7532
|
/** column name */
|
|
7440
7533
|
| "title"
|
|
7441
7534
|
/** column name */
|
|
7442
7535
|
| "type"
|
|
7443
7536
|
/** column name */
|
|
7444
|
-
| "uniqueRef"
|
|
7537
|
+
| "uniqueRef"
|
|
7538
|
+
/** column name */
|
|
7539
|
+
| "use_global_mapping";
|
|
7445
7540
|
|
|
7446
7541
|
export interface core_flow_updates {
|
|
7447
7542
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
@@ -11172,6 +11267,7 @@ export interface listing_bool_exp {
|
|
|
11172
11267
|
settingsRight?: InputMaybe<setting_bool_exp>;
|
|
11173
11268
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
11174
11269
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
11270
|
+
short_ref?: InputMaybe<String_comparison_exp>;
|
|
11175
11271
|
source?: InputMaybe<source_bool_exp>;
|
|
11176
11272
|
sourceId?: InputMaybe<uuid_comparison_exp>;
|
|
11177
11273
|
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
@@ -11725,7 +11821,9 @@ export type listing_constraint =
|
|
|
11725
11821
|
/** unique or primary key constraint on columns "id" */
|
|
11726
11822
|
| "listing_pkey"
|
|
11727
11823
|
/** unique or primary key constraint on columns "source_id" */
|
|
11728
|
-
| "listing_source_id_key"
|
|
11824
|
+
| "listing_source_id_key"
|
|
11825
|
+
/** unique or primary key constraint on columns "short_ref", "tenant_id" */
|
|
11826
|
+
| "listing_tenant_short_ref_unq";
|
|
11729
11827
|
|
|
11730
11828
|
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
11731
11829
|
export interface listing_delete_at_path_input {
|
|
@@ -11800,6 +11898,8 @@ export interface listing_insert_input {
|
|
|
11800
11898
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
11801
11899
|
settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
|
|
11802
11900
|
settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
|
|
11901
|
+
/** Human-readable system ID (LST-XXX-XXXX-XXX). */
|
|
11902
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
11803
11903
|
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
11804
11904
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
11805
11905
|
status?: InputMaybe<activeStatus_enum>;
|
|
@@ -11833,6 +11933,8 @@ export interface listing_max_order_by {
|
|
|
11833
11933
|
imageUri?: InputMaybe<order_by>;
|
|
11834
11934
|
name?: InputMaybe<order_by>;
|
|
11835
11935
|
ownerContactId?: InputMaybe<order_by>;
|
|
11936
|
+
/** Human-readable system ID (LST-XXX-XXXX-XXX). */
|
|
11937
|
+
short_ref?: InputMaybe<order_by>;
|
|
11836
11938
|
sourceId?: InputMaybe<order_by>;
|
|
11837
11939
|
tenantId?: InputMaybe<order_by>;
|
|
11838
11940
|
title?: InputMaybe<order_by>;
|
|
@@ -11862,6 +11964,8 @@ export interface listing_min_order_by {
|
|
|
11862
11964
|
imageUri?: InputMaybe<order_by>;
|
|
11863
11965
|
name?: InputMaybe<order_by>;
|
|
11864
11966
|
ownerContactId?: InputMaybe<order_by>;
|
|
11967
|
+
/** Human-readable system ID (LST-XXX-XXXX-XXX). */
|
|
11968
|
+
short_ref?: InputMaybe<order_by>;
|
|
11865
11969
|
sourceId?: InputMaybe<order_by>;
|
|
11866
11970
|
tenantId?: InputMaybe<order_by>;
|
|
11867
11971
|
title?: InputMaybe<order_by>;
|
|
@@ -11928,6 +12032,7 @@ export interface listing_order_by {
|
|
|
11928
12032
|
settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
11929
12033
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
11930
12034
|
settings_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
12035
|
+
short_ref?: InputMaybe<order_by>;
|
|
11931
12036
|
source?: InputMaybe<source_order_by>;
|
|
11932
12037
|
sourceId?: InputMaybe<order_by>;
|
|
11933
12038
|
status?: InputMaybe<order_by>;
|
|
@@ -12356,6 +12461,8 @@ export type listing_select_column =
|
|
|
12356
12461
|
/** column name */
|
|
12357
12462
|
| "pmsStatus"
|
|
12358
12463
|
/** column name */
|
|
12464
|
+
| "short_ref"
|
|
12465
|
+
/** column name */
|
|
12359
12466
|
| "sourceId"
|
|
12360
12467
|
/** column name */
|
|
12361
12468
|
| "status"
|
|
@@ -12393,6 +12500,8 @@ export interface listing_set_input {
|
|
|
12393
12500
|
ownerContactId?: InputMaybe<Scalars["uuid"]>;
|
|
12394
12501
|
pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
12395
12502
|
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
12503
|
+
/** Human-readable system ID (LST-XXX-XXXX-XXX). */
|
|
12504
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
12396
12505
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
12397
12506
|
status?: InputMaybe<activeStatus_enum>;
|
|
12398
12507
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -12464,6 +12573,8 @@ export interface listing_stream_cursor_value_input {
|
|
|
12464
12573
|
ownerContactId?: InputMaybe<Scalars["uuid"]>;
|
|
12465
12574
|
pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
12466
12575
|
pmsStatus?: InputMaybe<activeStatus_enum>;
|
|
12576
|
+
/** Human-readable system ID (LST-XXX-XXXX-XXX). */
|
|
12577
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
12467
12578
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
12468
12579
|
status?: InputMaybe<activeStatus_enum>;
|
|
12469
12580
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -12528,6 +12639,8 @@ export type listing_update_column =
|
|
|
12528
12639
|
/** column name */
|
|
12529
12640
|
| "pmsStatus"
|
|
12530
12641
|
/** column name */
|
|
12642
|
+
| "short_ref"
|
|
12643
|
+
/** column name */
|
|
12531
12644
|
| "sourceId"
|
|
12532
12645
|
/** column name */
|
|
12533
12646
|
| "status"
|
|
@@ -19698,7 +19811,10 @@ export interface reservation_avg_order_by {
|
|
|
19698
19811
|
centService?: InputMaybe<order_by>;
|
|
19699
19812
|
centTotal?: InputMaybe<order_by>;
|
|
19700
19813
|
guests?: InputMaybe<order_by>;
|
|
19814
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
19701
19815
|
nights?: InputMaybe<order_by>;
|
|
19816
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
19817
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
19702
19818
|
}
|
|
19703
19819
|
|
|
19704
19820
|
/** Boolean expression to filter rows from the table "reservation". All fields are combined with a logical 'AND'. */
|
|
@@ -19737,6 +19853,7 @@ export interface reservation_bool_exp {
|
|
|
19737
19853
|
files?: InputMaybe<file_storage_bool_exp>;
|
|
19738
19854
|
files_aggregate?: InputMaybe<file_storage_aggregate_bool_exp>;
|
|
19739
19855
|
generalLedgerPostingAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
19856
|
+
general_ledger_status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
19740
19857
|
guestName?: InputMaybe<String_comparison_exp>;
|
|
19741
19858
|
guests?: InputMaybe<Int_comparison_exp>;
|
|
19742
19859
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -19747,6 +19864,7 @@ export interface reservation_bool_exp {
|
|
|
19747
19864
|
listingConnection?: InputMaybe<listing_connection_bool_exp>;
|
|
19748
19865
|
listingConnectionId?: InputMaybe<uuid_comparison_exp>;
|
|
19749
19866
|
listingId?: InputMaybe<uuid_comparison_exp>;
|
|
19867
|
+
manager_cent_total?: InputMaybe<bigint_comparison_exp>;
|
|
19750
19868
|
matchPaymentCustomerRef?: InputMaybe<String_comparison_exp>;
|
|
19751
19869
|
members?: InputMaybe<tenant_user_bool_exp>;
|
|
19752
19870
|
members_aggregate?: InputMaybe<tenant_user_aggregate_bool_exp>;
|
|
@@ -19756,6 +19874,7 @@ export interface reservation_bool_exp {
|
|
|
19756
19874
|
otaReservationId?: InputMaybe<uuid_comparison_exp>;
|
|
19757
19875
|
ownerStatementLines?: InputMaybe<owner_statement_line_bool_exp>;
|
|
19758
19876
|
ownerStatementLines_aggregate?: InputMaybe<owner_statement_line_aggregate_bool_exp>;
|
|
19877
|
+
owners_cent_total?: InputMaybe<bigint_comparison_exp>;
|
|
19759
19878
|
paidStatus?: InputMaybe<paidStatus_enum_comparison_exp>;
|
|
19760
19879
|
paymentLines?: InputMaybe<payment_line_bool_exp>;
|
|
19761
19880
|
paymentLines_aggregate?: InputMaybe<payment_line_aggregate_bool_exp>;
|
|
@@ -19767,6 +19886,7 @@ export interface reservation_bool_exp {
|
|
|
19767
19886
|
settingsLeft_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
19768
19887
|
settingsRight?: InputMaybe<setting_bool_exp>;
|
|
19769
19888
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
19889
|
+
short_ref?: InputMaybe<String_comparison_exp>;
|
|
19770
19890
|
similarReservations?: InputMaybe<reservation_bool_exp>;
|
|
19771
19891
|
similarReservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
|
|
19772
19892
|
source?: InputMaybe<source_bool_exp>;
|
|
@@ -19774,6 +19894,7 @@ export interface reservation_bool_exp {
|
|
|
19774
19894
|
sources?: InputMaybe<source_bool_exp>;
|
|
19775
19895
|
sources_aggregate?: InputMaybe<source_aggregate_bool_exp>;
|
|
19776
19896
|
status?: InputMaybe<reservation_status_enum_comparison_exp>;
|
|
19897
|
+
tax_cent_total?: InputMaybe<bigint_comparison_exp>;
|
|
19777
19898
|
tenant?: InputMaybe<tenant_bool_exp>;
|
|
19778
19899
|
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
19779
19900
|
transactionLines?: InputMaybe<transactionLine_bool_exp>;
|
|
@@ -19793,7 +19914,9 @@ export type reservation_constraint =
|
|
|
19793
19914
|
/** unique or primary key constraint on columns "id" */
|
|
19794
19915
|
| "reservation_pkey"
|
|
19795
19916
|
/** unique or primary key constraint on columns "source_id" */
|
|
19796
|
-
| "reservation_source_id_key"
|
|
19917
|
+
| "reservation_source_id_key"
|
|
19918
|
+
/** unique or primary key constraint on columns "short_ref", "tenant_id" */
|
|
19919
|
+
| "reservation_tenant_short_ref_unq";
|
|
19797
19920
|
|
|
19798
19921
|
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
19799
19922
|
export interface reservation_delete_at_path_input {
|
|
@@ -19829,7 +19952,10 @@ export interface reservation_inc_input {
|
|
|
19829
19952
|
centService?: InputMaybe<Scalars["Int"]>;
|
|
19830
19953
|
centTotal?: InputMaybe<Scalars["bigint"]>;
|
|
19831
19954
|
guests?: InputMaybe<Scalars["Int"]>;
|
|
19955
|
+
manager_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
19832
19956
|
nights?: InputMaybe<Scalars["Int"]>;
|
|
19957
|
+
owners_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
19958
|
+
tax_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
19833
19959
|
}
|
|
19834
19960
|
|
|
19835
19961
|
/** input type for inserting data into table "reservation" */
|
|
@@ -19861,6 +19987,7 @@ export interface reservation_insert_input {
|
|
|
19861
19987
|
currency?: InputMaybe<currency_enum>;
|
|
19862
19988
|
files?: InputMaybe<file_storage_arr_rel_insert_input>;
|
|
19863
19989
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
19990
|
+
general_ledger_status?: InputMaybe<activeStatus_enum>;
|
|
19864
19991
|
guestName?: InputMaybe<Scalars["String"]>;
|
|
19865
19992
|
guests?: InputMaybe<Scalars["Int"]>;
|
|
19866
19993
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -19870,6 +19997,7 @@ export interface reservation_insert_input {
|
|
|
19870
19997
|
listingConnection?: InputMaybe<listing_connection_obj_rel_insert_input>;
|
|
19871
19998
|
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
19872
19999
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
20000
|
+
manager_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
19873
20001
|
matchPaymentCustomerRef?: InputMaybe<Scalars["String"]>;
|
|
19874
20002
|
members?: InputMaybe<tenant_user_arr_rel_insert_input>;
|
|
19875
20003
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -19877,6 +20005,7 @@ export interface reservation_insert_input {
|
|
|
19877
20005
|
otaReservation?: InputMaybe<reservation_obj_rel_insert_input>;
|
|
19878
20006
|
otaReservationId?: InputMaybe<Scalars["uuid"]>;
|
|
19879
20007
|
ownerStatementLines?: InputMaybe<owner_statement_line_arr_rel_insert_input>;
|
|
20008
|
+
owners_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
19880
20009
|
paidStatus?: InputMaybe<paidStatus_enum>;
|
|
19881
20010
|
paymentLines?: InputMaybe<payment_line_arr_rel_insert_input>;
|
|
19882
20011
|
paymentMethod?: InputMaybe<Scalars["String"]>;
|
|
@@ -19884,11 +20013,14 @@ export interface reservation_insert_input {
|
|
|
19884
20013
|
relatedReservations?: InputMaybe<reservation_arr_rel_insert_input>;
|
|
19885
20014
|
settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
|
|
19886
20015
|
settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
|
|
20016
|
+
/** Human-readable system ID (RES-XXX-XXXX-XXX). */
|
|
20017
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
19887
20018
|
similarReservations?: InputMaybe<reservation_arr_rel_insert_input>;
|
|
19888
20019
|
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
19889
20020
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
19890
20021
|
sources?: InputMaybe<source_arr_rel_insert_input>;
|
|
19891
20022
|
status?: InputMaybe<reservation_status_enum>;
|
|
20023
|
+
tax_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
19892
20024
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
19893
20025
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
19894
20026
|
transactionLines?: InputMaybe<transactionLine_arr_rel_insert_input>;
|
|
@@ -19927,12 +20059,17 @@ export interface reservation_max_order_by {
|
|
|
19927
20059
|
id?: InputMaybe<order_by>;
|
|
19928
20060
|
listingConnectionId?: InputMaybe<order_by>;
|
|
19929
20061
|
listingId?: InputMaybe<order_by>;
|
|
20062
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
19930
20063
|
matchPaymentCustomerRef?: InputMaybe<order_by>;
|
|
19931
20064
|
nights?: InputMaybe<order_by>;
|
|
19932
20065
|
otaReservationId?: InputMaybe<order_by>;
|
|
20066
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
19933
20067
|
paymentMethod?: InputMaybe<order_by>;
|
|
19934
20068
|
pmsReferenceCode?: InputMaybe<order_by>;
|
|
20069
|
+
/** Human-readable system ID (RES-XXX-XXXX-XXX). */
|
|
20070
|
+
short_ref?: InputMaybe<order_by>;
|
|
19935
20071
|
sourceId?: InputMaybe<order_by>;
|
|
20072
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
19936
20073
|
tenantId?: InputMaybe<order_by>;
|
|
19937
20074
|
uniqueRef?: InputMaybe<order_by>;
|
|
19938
20075
|
uniqueRef2?: InputMaybe<order_by>;
|
|
@@ -19968,12 +20105,17 @@ export interface reservation_min_order_by {
|
|
|
19968
20105
|
id?: InputMaybe<order_by>;
|
|
19969
20106
|
listingConnectionId?: InputMaybe<order_by>;
|
|
19970
20107
|
listingId?: InputMaybe<order_by>;
|
|
20108
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
19971
20109
|
matchPaymentCustomerRef?: InputMaybe<order_by>;
|
|
19972
20110
|
nights?: InputMaybe<order_by>;
|
|
19973
20111
|
otaReservationId?: InputMaybe<order_by>;
|
|
20112
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
19974
20113
|
paymentMethod?: InputMaybe<order_by>;
|
|
19975
20114
|
pmsReferenceCode?: InputMaybe<order_by>;
|
|
20115
|
+
/** Human-readable system ID (RES-XXX-XXXX-XXX). */
|
|
20116
|
+
short_ref?: InputMaybe<order_by>;
|
|
19976
20117
|
sourceId?: InputMaybe<order_by>;
|
|
20118
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
19977
20119
|
tenantId?: InputMaybe<order_by>;
|
|
19978
20120
|
uniqueRef?: InputMaybe<order_by>;
|
|
19979
20121
|
uniqueRef2?: InputMaybe<order_by>;
|
|
@@ -20024,6 +20166,7 @@ export interface reservation_order_by {
|
|
|
20024
20166
|
currency?: InputMaybe<order_by>;
|
|
20025
20167
|
files_aggregate?: InputMaybe<file_storage_aggregate_order_by>;
|
|
20026
20168
|
generalLedgerPostingAt?: InputMaybe<order_by>;
|
|
20169
|
+
general_ledger_status?: InputMaybe<order_by>;
|
|
20027
20170
|
guestName?: InputMaybe<order_by>;
|
|
20028
20171
|
guests?: InputMaybe<order_by>;
|
|
20029
20172
|
id?: InputMaybe<order_by>;
|
|
@@ -20033,6 +20176,7 @@ export interface reservation_order_by {
|
|
|
20033
20176
|
listingConnection?: InputMaybe<listing_connection_order_by>;
|
|
20034
20177
|
listingConnectionId?: InputMaybe<order_by>;
|
|
20035
20178
|
listingId?: InputMaybe<order_by>;
|
|
20179
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20036
20180
|
matchPaymentCustomerRef?: InputMaybe<order_by>;
|
|
20037
20181
|
members_aggregate?: InputMaybe<tenant_user_aggregate_order_by>;
|
|
20038
20182
|
metadata?: InputMaybe<order_by>;
|
|
@@ -20040,6 +20184,7 @@ export interface reservation_order_by {
|
|
|
20040
20184
|
otaReservation?: InputMaybe<reservation_order_by>;
|
|
20041
20185
|
otaReservationId?: InputMaybe<order_by>;
|
|
20042
20186
|
ownerStatementLines_aggregate?: InputMaybe<owner_statement_line_aggregate_order_by>;
|
|
20187
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20043
20188
|
paidStatus?: InputMaybe<order_by>;
|
|
20044
20189
|
paymentLines_aggregate?: InputMaybe<payment_line_aggregate_order_by>;
|
|
20045
20190
|
paymentMethod?: InputMaybe<order_by>;
|
|
@@ -20047,11 +20192,13 @@ export interface reservation_order_by {
|
|
|
20047
20192
|
relatedReservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
|
|
20048
20193
|
settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
20049
20194
|
settingsRight_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
20195
|
+
short_ref?: InputMaybe<order_by>;
|
|
20050
20196
|
similarReservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
|
|
20051
20197
|
source?: InputMaybe<source_order_by>;
|
|
20052
20198
|
sourceId?: InputMaybe<order_by>;
|
|
20053
20199
|
sources_aggregate?: InputMaybe<source_aggregate_order_by>;
|
|
20054
20200
|
status?: InputMaybe<order_by>;
|
|
20201
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20055
20202
|
tenant?: InputMaybe<tenant_order_by>;
|
|
20056
20203
|
tenantId?: InputMaybe<order_by>;
|
|
20057
20204
|
transactionLines_aggregate?: InputMaybe<transactionLine_aggregate_order_by>;
|
|
@@ -20122,6 +20269,8 @@ export type reservation_select_column =
|
|
|
20122
20269
|
/** column name */
|
|
20123
20270
|
| "generalLedgerPostingAt"
|
|
20124
20271
|
/** column name */
|
|
20272
|
+
| "general_ledger_status"
|
|
20273
|
+
/** column name */
|
|
20125
20274
|
| "guestName"
|
|
20126
20275
|
/** column name */
|
|
20127
20276
|
| "guests"
|
|
@@ -20134,6 +20283,8 @@ export type reservation_select_column =
|
|
|
20134
20283
|
/** column name */
|
|
20135
20284
|
| "listingId"
|
|
20136
20285
|
/** column name */
|
|
20286
|
+
| "manager_cent_total"
|
|
20287
|
+
/** column name */
|
|
20137
20288
|
| "matchPaymentCustomerRef"
|
|
20138
20289
|
/** column name */
|
|
20139
20290
|
| "metadata"
|
|
@@ -20142,16 +20293,22 @@ export type reservation_select_column =
|
|
|
20142
20293
|
/** column name */
|
|
20143
20294
|
| "otaReservationId"
|
|
20144
20295
|
/** column name */
|
|
20296
|
+
| "owners_cent_total"
|
|
20297
|
+
/** column name */
|
|
20145
20298
|
| "paidStatus"
|
|
20146
20299
|
/** column name */
|
|
20147
20300
|
| "paymentMethod"
|
|
20148
20301
|
/** column name */
|
|
20149
20302
|
| "pmsReferenceCode"
|
|
20150
20303
|
/** column name */
|
|
20304
|
+
| "short_ref"
|
|
20305
|
+
/** column name */
|
|
20151
20306
|
| "sourceId"
|
|
20152
20307
|
/** column name */
|
|
20153
20308
|
| "status"
|
|
20154
20309
|
/** column name */
|
|
20310
|
+
| "tax_cent_total"
|
|
20311
|
+
/** column name */
|
|
20155
20312
|
| "tenantId"
|
|
20156
20313
|
/** column name */
|
|
20157
20314
|
| "uniqueRef"
|
|
@@ -20186,21 +20343,27 @@ export interface reservation_set_input {
|
|
|
20186
20343
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20187
20344
|
currency?: InputMaybe<currency_enum>;
|
|
20188
20345
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20346
|
+
general_ledger_status?: InputMaybe<activeStatus_enum>;
|
|
20189
20347
|
guestName?: InputMaybe<Scalars["String"]>;
|
|
20190
20348
|
guests?: InputMaybe<Scalars["Int"]>;
|
|
20191
20349
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
20192
20350
|
lineMap?: InputMaybe<Scalars["jsonb"]>;
|
|
20193
20351
|
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
20194
20352
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
20353
|
+
manager_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
20195
20354
|
matchPaymentCustomerRef?: InputMaybe<Scalars["String"]>;
|
|
20196
20355
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
20197
20356
|
nights?: InputMaybe<Scalars["Int"]>;
|
|
20198
20357
|
otaReservationId?: InputMaybe<Scalars["uuid"]>;
|
|
20358
|
+
owners_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
20199
20359
|
paidStatus?: InputMaybe<paidStatus_enum>;
|
|
20200
20360
|
paymentMethod?: InputMaybe<Scalars["String"]>;
|
|
20201
20361
|
pmsReferenceCode?: InputMaybe<Scalars["String"]>;
|
|
20362
|
+
/** Human-readable system ID (RES-XXX-XXXX-XXX). */
|
|
20363
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
20202
20364
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
20203
20365
|
status?: InputMaybe<reservation_status_enum>;
|
|
20366
|
+
tax_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
20204
20367
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
20205
20368
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
20206
20369
|
uniqueRef2?: InputMaybe<Scalars["String"]>;
|
|
@@ -20306,7 +20469,10 @@ export interface reservation_stddev_order_by {
|
|
|
20306
20469
|
centService?: InputMaybe<order_by>;
|
|
20307
20470
|
centTotal?: InputMaybe<order_by>;
|
|
20308
20471
|
guests?: InputMaybe<order_by>;
|
|
20472
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20309
20473
|
nights?: InputMaybe<order_by>;
|
|
20474
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20475
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20310
20476
|
}
|
|
20311
20477
|
|
|
20312
20478
|
/** order by stddev_pop() on columns of table "reservation" */
|
|
@@ -20322,7 +20488,10 @@ export interface reservation_stddev_pop_order_by {
|
|
|
20322
20488
|
centService?: InputMaybe<order_by>;
|
|
20323
20489
|
centTotal?: InputMaybe<order_by>;
|
|
20324
20490
|
guests?: InputMaybe<order_by>;
|
|
20491
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20325
20492
|
nights?: InputMaybe<order_by>;
|
|
20493
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20494
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20326
20495
|
}
|
|
20327
20496
|
|
|
20328
20497
|
/** order by stddev_samp() on columns of table "reservation" */
|
|
@@ -20338,7 +20507,10 @@ export interface reservation_stddev_samp_order_by {
|
|
|
20338
20507
|
centService?: InputMaybe<order_by>;
|
|
20339
20508
|
centTotal?: InputMaybe<order_by>;
|
|
20340
20509
|
guests?: InputMaybe<order_by>;
|
|
20510
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20341
20511
|
nights?: InputMaybe<order_by>;
|
|
20512
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20513
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20342
20514
|
}
|
|
20343
20515
|
|
|
20344
20516
|
/** Streaming cursor of the table "reservation" */
|
|
@@ -20374,21 +20546,27 @@ export interface reservation_stream_cursor_value_input {
|
|
|
20374
20546
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20375
20547
|
currency?: InputMaybe<currency_enum>;
|
|
20376
20548
|
generalLedgerPostingAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
20549
|
+
general_ledger_status?: InputMaybe<activeStatus_enum>;
|
|
20377
20550
|
guestName?: InputMaybe<Scalars["String"]>;
|
|
20378
20551
|
guests?: InputMaybe<Scalars["Int"]>;
|
|
20379
20552
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
20380
20553
|
lineMap?: InputMaybe<Scalars["jsonb"]>;
|
|
20381
20554
|
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
20382
20555
|
listingId?: InputMaybe<Scalars["uuid"]>;
|
|
20556
|
+
manager_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
20383
20557
|
matchPaymentCustomerRef?: InputMaybe<Scalars["String"]>;
|
|
20384
20558
|
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
20385
20559
|
nights?: InputMaybe<Scalars["Int"]>;
|
|
20386
20560
|
otaReservationId?: InputMaybe<Scalars["uuid"]>;
|
|
20561
|
+
owners_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
20387
20562
|
paidStatus?: InputMaybe<paidStatus_enum>;
|
|
20388
20563
|
paymentMethod?: InputMaybe<Scalars["String"]>;
|
|
20389
20564
|
pmsReferenceCode?: InputMaybe<Scalars["String"]>;
|
|
20565
|
+
/** Human-readable system ID (RES-XXX-XXXX-XXX). */
|
|
20566
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
20390
20567
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
20391
20568
|
status?: InputMaybe<reservation_status_enum>;
|
|
20569
|
+
tax_cent_total?: InputMaybe<Scalars["bigint"]>;
|
|
20392
20570
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
20393
20571
|
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
20394
20572
|
uniqueRef2?: InputMaybe<Scalars["String"]>;
|
|
@@ -20409,7 +20587,10 @@ export interface reservation_sum_order_by {
|
|
|
20409
20587
|
centService?: InputMaybe<order_by>;
|
|
20410
20588
|
centTotal?: InputMaybe<order_by>;
|
|
20411
20589
|
guests?: InputMaybe<order_by>;
|
|
20590
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20412
20591
|
nights?: InputMaybe<order_by>;
|
|
20592
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20593
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20413
20594
|
}
|
|
20414
20595
|
|
|
20415
20596
|
/** update columns of table "reservation" */
|
|
@@ -20459,6 +20640,8 @@ export type reservation_update_column =
|
|
|
20459
20640
|
/** column name */
|
|
20460
20641
|
| "generalLedgerPostingAt"
|
|
20461
20642
|
/** column name */
|
|
20643
|
+
| "general_ledger_status"
|
|
20644
|
+
/** column name */
|
|
20462
20645
|
| "guestName"
|
|
20463
20646
|
/** column name */
|
|
20464
20647
|
| "guests"
|
|
@@ -20471,6 +20654,8 @@ export type reservation_update_column =
|
|
|
20471
20654
|
/** column name */
|
|
20472
20655
|
| "listingId"
|
|
20473
20656
|
/** column name */
|
|
20657
|
+
| "manager_cent_total"
|
|
20658
|
+
/** column name */
|
|
20474
20659
|
| "matchPaymentCustomerRef"
|
|
20475
20660
|
/** column name */
|
|
20476
20661
|
| "metadata"
|
|
@@ -20479,16 +20664,22 @@ export type reservation_update_column =
|
|
|
20479
20664
|
/** column name */
|
|
20480
20665
|
| "otaReservationId"
|
|
20481
20666
|
/** column name */
|
|
20667
|
+
| "owners_cent_total"
|
|
20668
|
+
/** column name */
|
|
20482
20669
|
| "paidStatus"
|
|
20483
20670
|
/** column name */
|
|
20484
20671
|
| "paymentMethod"
|
|
20485
20672
|
/** column name */
|
|
20486
20673
|
| "pmsReferenceCode"
|
|
20487
20674
|
/** column name */
|
|
20675
|
+
| "short_ref"
|
|
20676
|
+
/** column name */
|
|
20488
20677
|
| "sourceId"
|
|
20489
20678
|
/** column name */
|
|
20490
20679
|
| "status"
|
|
20491
20680
|
/** column name */
|
|
20681
|
+
| "tax_cent_total"
|
|
20682
|
+
/** column name */
|
|
20492
20683
|
| "tenantId"
|
|
20493
20684
|
/** column name */
|
|
20494
20685
|
| "uniqueRef"
|
|
@@ -20531,7 +20722,10 @@ export interface reservation_var_pop_order_by {
|
|
|
20531
20722
|
centService?: InputMaybe<order_by>;
|
|
20532
20723
|
centTotal?: InputMaybe<order_by>;
|
|
20533
20724
|
guests?: InputMaybe<order_by>;
|
|
20725
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20534
20726
|
nights?: InputMaybe<order_by>;
|
|
20727
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20728
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20535
20729
|
}
|
|
20536
20730
|
|
|
20537
20731
|
/** order by var_samp() on columns of table "reservation" */
|
|
@@ -20547,7 +20741,10 @@ export interface reservation_var_samp_order_by {
|
|
|
20547
20741
|
centService?: InputMaybe<order_by>;
|
|
20548
20742
|
centTotal?: InputMaybe<order_by>;
|
|
20549
20743
|
guests?: InputMaybe<order_by>;
|
|
20744
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20550
20745
|
nights?: InputMaybe<order_by>;
|
|
20746
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20747
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20551
20748
|
}
|
|
20552
20749
|
|
|
20553
20750
|
/** order by variance() on columns of table "reservation" */
|
|
@@ -20563,7 +20760,10 @@ export interface reservation_variance_order_by {
|
|
|
20563
20760
|
centService?: InputMaybe<order_by>;
|
|
20564
20761
|
centTotal?: InputMaybe<order_by>;
|
|
20565
20762
|
guests?: InputMaybe<order_by>;
|
|
20763
|
+
manager_cent_total?: InputMaybe<order_by>;
|
|
20566
20764
|
nights?: InputMaybe<order_by>;
|
|
20765
|
+
owners_cent_total?: InputMaybe<order_by>;
|
|
20766
|
+
tax_cent_total?: InputMaybe<order_by>;
|
|
20567
20767
|
}
|
|
20568
20768
|
|
|
20569
20769
|
export interface setting_aggregate_bool_exp {
|
|
@@ -23962,6 +24162,8 @@ export interface tenant_aggregate_order_by {
|
|
|
23962
24162
|
export interface tenant_append_input {
|
|
23963
24163
|
billingAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
23964
24164
|
featureFlags?: InputMaybe<Scalars["jsonb"]>;
|
|
24165
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24166
|
+
settingsData?: InputMaybe<Scalars["jsonb"]>;
|
|
23965
24167
|
setup?: InputMaybe<Scalars["jsonb"]>;
|
|
23966
24168
|
statementAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
23967
24169
|
}
|
|
@@ -24054,6 +24256,7 @@ export interface tenant_bool_exp {
|
|
|
24054
24256
|
name?: InputMaybe<String_comparison_exp>;
|
|
24055
24257
|
ownerStatements?: InputMaybe<owner_statement_bool_exp>;
|
|
24056
24258
|
ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_bool_exp>;
|
|
24259
|
+
owner_portal_show_draft_statements?: InputMaybe<Boolean_comparison_exp>;
|
|
24057
24260
|
owners?: InputMaybe<owner_bool_exp>;
|
|
24058
24261
|
owners_aggregate?: InputMaybe<owner_aggregate_bool_exp>;
|
|
24059
24262
|
partner?: InputMaybe<tenant_bool_exp>;
|
|
@@ -24067,6 +24270,7 @@ export interface tenant_bool_exp {
|
|
|
24067
24270
|
reservations?: InputMaybe<reservation_bool_exp>;
|
|
24068
24271
|
reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
|
|
24069
24272
|
settings?: InputMaybe<setting_bool_exp>;
|
|
24273
|
+
settingsData?: InputMaybe<jsonb_comparison_exp>;
|
|
24070
24274
|
settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
|
|
24071
24275
|
setup?: InputMaybe<jsonb_comparison_exp>;
|
|
24072
24276
|
setupCompleted?: InputMaybe<Boolean_comparison_exp>;
|
|
@@ -24109,6 +24313,8 @@ export type tenant_constraint =
|
|
|
24109
24313
|
export interface tenant_delete_at_path_input {
|
|
24110
24314
|
billingAddressData?: InputMaybe<Array<Scalars["String"]>>;
|
|
24111
24315
|
featureFlags?: InputMaybe<Array<Scalars["String"]>>;
|
|
24316
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24317
|
+
settingsData?: InputMaybe<Array<Scalars["String"]>>;
|
|
24112
24318
|
setup?: InputMaybe<Array<Scalars["String"]>>;
|
|
24113
24319
|
statementAddressData?: InputMaybe<Array<Scalars["String"]>>;
|
|
24114
24320
|
}
|
|
@@ -24117,6 +24323,8 @@ export interface tenant_delete_at_path_input {
|
|
|
24117
24323
|
export interface tenant_delete_elem_input {
|
|
24118
24324
|
billingAddressData?: InputMaybe<Scalars["Int"]>;
|
|
24119
24325
|
featureFlags?: InputMaybe<Scalars["Int"]>;
|
|
24326
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24327
|
+
settingsData?: InputMaybe<Scalars["Int"]>;
|
|
24120
24328
|
setup?: InputMaybe<Scalars["Int"]>;
|
|
24121
24329
|
statementAddressData?: InputMaybe<Scalars["Int"]>;
|
|
24122
24330
|
}
|
|
@@ -24125,6 +24333,8 @@ export interface tenant_delete_elem_input {
|
|
|
24125
24333
|
export interface tenant_delete_key_input {
|
|
24126
24334
|
billingAddressData?: InputMaybe<Scalars["String"]>;
|
|
24127
24335
|
featureFlags?: InputMaybe<Scalars["String"]>;
|
|
24336
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24337
|
+
settingsData?: InputMaybe<Scalars["String"]>;
|
|
24128
24338
|
setup?: InputMaybe<Scalars["String"]>;
|
|
24129
24339
|
statementAddressData?: InputMaybe<Scalars["String"]>;
|
|
24130
24340
|
}
|
|
@@ -24190,6 +24400,7 @@ export interface tenant_insert_input {
|
|
|
24190
24400
|
monitorConnections?: InputMaybe<monitorConnection_arr_rel_insert_input>;
|
|
24191
24401
|
name?: InputMaybe<Scalars["String"]>;
|
|
24192
24402
|
ownerStatements?: InputMaybe<owner_statement_arr_rel_insert_input>;
|
|
24403
|
+
owner_portal_show_draft_statements?: InputMaybe<Scalars["Boolean"]>;
|
|
24193
24404
|
owners?: InputMaybe<owner_arr_rel_insert_input>;
|
|
24194
24405
|
partner?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
24195
24406
|
partnerId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -24198,6 +24409,8 @@ export interface tenant_insert_input {
|
|
|
24198
24409
|
rates?: InputMaybe<rate_arr_rel_insert_input>;
|
|
24199
24410
|
reservations?: InputMaybe<reservation_arr_rel_insert_input>;
|
|
24200
24411
|
settings?: InputMaybe<setting_arr_rel_insert_input>;
|
|
24412
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24413
|
+
settingsData?: InputMaybe<Scalars["jsonb"]>;
|
|
24201
24414
|
setup?: InputMaybe<Scalars["jsonb"]>;
|
|
24202
24415
|
setupCompleted?: InputMaybe<Scalars["Boolean"]>;
|
|
24203
24416
|
sources?: InputMaybe<source_arr_rel_insert_input>;
|
|
@@ -24383,6 +24596,7 @@ export interface tenant_order_by {
|
|
|
24383
24596
|
monitorConnections_aggregate?: InputMaybe<monitorConnection_aggregate_order_by>;
|
|
24384
24597
|
name?: InputMaybe<order_by>;
|
|
24385
24598
|
ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_order_by>;
|
|
24599
|
+
owner_portal_show_draft_statements?: InputMaybe<order_by>;
|
|
24386
24600
|
owners_aggregate?: InputMaybe<owner_aggregate_order_by>;
|
|
24387
24601
|
partner?: InputMaybe<tenant_order_by>;
|
|
24388
24602
|
partnerId?: InputMaybe<order_by>;
|
|
@@ -24390,6 +24604,7 @@ export interface tenant_order_by {
|
|
|
24390
24604
|
paymentLines_aggregate?: InputMaybe<payment_line_aggregate_order_by>;
|
|
24391
24605
|
rates_aggregate?: InputMaybe<rate_aggregate_order_by>;
|
|
24392
24606
|
reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
|
|
24607
|
+
settingsData?: InputMaybe<order_by>;
|
|
24393
24608
|
settings_aggregate?: InputMaybe<setting_aggregate_order_by>;
|
|
24394
24609
|
setup?: InputMaybe<order_by>;
|
|
24395
24610
|
setupCompleted?: InputMaybe<order_by>;
|
|
@@ -24425,6 +24640,8 @@ export interface tenant_pk_columns_input {
|
|
|
24425
24640
|
export interface tenant_prepend_input {
|
|
24426
24641
|
billingAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
24427
24642
|
featureFlags?: InputMaybe<Scalars["jsonb"]>;
|
|
24643
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24644
|
+
settingsData?: InputMaybe<Scalars["jsonb"]>;
|
|
24428
24645
|
setup?: InputMaybe<Scalars["jsonb"]>;
|
|
24429
24646
|
statementAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
24430
24647
|
}
|
|
@@ -24506,8 +24723,12 @@ export type tenant_select_column =
|
|
|
24506
24723
|
/** column name */
|
|
24507
24724
|
| "name"
|
|
24508
24725
|
/** column name */
|
|
24726
|
+
| "owner_portal_show_draft_statements"
|
|
24727
|
+
/** column name */
|
|
24509
24728
|
| "partnerId"
|
|
24510
24729
|
/** column name */
|
|
24730
|
+
| "settingsData"
|
|
24731
|
+
/** column name */
|
|
24511
24732
|
| "setup"
|
|
24512
24733
|
/** column name */
|
|
24513
24734
|
| "setupCompleted"
|
|
@@ -24551,6 +24772,8 @@ export type tenant_select_column_tenant_aggregate_bool_exp_bool_and_arguments_co
|
|
|
24551
24772
|
/** column name */
|
|
24552
24773
|
| "isTest"
|
|
24553
24774
|
/** column name */
|
|
24775
|
+
| "owner_portal_show_draft_statements"
|
|
24776
|
+
/** column name */
|
|
24554
24777
|
| "setupCompleted"
|
|
24555
24778
|
/** column name */
|
|
24556
24779
|
| "svixEndpoints";
|
|
@@ -24568,6 +24791,8 @@ export type tenant_select_column_tenant_aggregate_bool_exp_bool_or_arguments_col
|
|
|
24568
24791
|
/** column name */
|
|
24569
24792
|
| "isTest"
|
|
24570
24793
|
/** column name */
|
|
24794
|
+
| "owner_portal_show_draft_statements"
|
|
24795
|
+
/** column name */
|
|
24571
24796
|
| "setupCompleted"
|
|
24572
24797
|
/** column name */
|
|
24573
24798
|
| "svixEndpoints";
|
|
@@ -24609,7 +24834,10 @@ export interface tenant_set_input {
|
|
|
24609
24834
|
logo?: InputMaybe<Scalars["String"]>;
|
|
24610
24835
|
longTermStayNights?: InputMaybe<Scalars["Int"]>;
|
|
24611
24836
|
name?: InputMaybe<Scalars["String"]>;
|
|
24837
|
+
owner_portal_show_draft_statements?: InputMaybe<Scalars["Boolean"]>;
|
|
24612
24838
|
partnerId?: InputMaybe<Scalars["uuid"]>;
|
|
24839
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24840
|
+
settingsData?: InputMaybe<Scalars["jsonb"]>;
|
|
24613
24841
|
setup?: InputMaybe<Scalars["jsonb"]>;
|
|
24614
24842
|
setupCompleted?: InputMaybe<Scalars["Boolean"]>;
|
|
24615
24843
|
statementAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -24693,7 +24921,10 @@ export interface tenant_stream_cursor_value_input {
|
|
|
24693
24921
|
logo?: InputMaybe<Scalars["String"]>;
|
|
24694
24922
|
longTermStayNights?: InputMaybe<Scalars["Int"]>;
|
|
24695
24923
|
name?: InputMaybe<Scalars["String"]>;
|
|
24924
|
+
owner_portal_show_draft_statements?: InputMaybe<Scalars["Boolean"]>;
|
|
24696
24925
|
partnerId?: InputMaybe<Scalars["uuid"]>;
|
|
24926
|
+
/** JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements */
|
|
24927
|
+
settingsData?: InputMaybe<Scalars["jsonb"]>;
|
|
24697
24928
|
setup?: InputMaybe<Scalars["jsonb"]>;
|
|
24698
24929
|
setupCompleted?: InputMaybe<Scalars["Boolean"]>;
|
|
24699
24930
|
statementAddressData?: InputMaybe<Scalars["jsonb"]>;
|
|
@@ -24788,8 +25019,12 @@ export type tenant_update_column =
|
|
|
24788
25019
|
/** column name */
|
|
24789
25020
|
| "name"
|
|
24790
25021
|
/** column name */
|
|
25022
|
+
| "owner_portal_show_draft_statements"
|
|
25023
|
+
/** column name */
|
|
24791
25024
|
| "partnerId"
|
|
24792
25025
|
/** column name */
|
|
25026
|
+
| "settingsData"
|
|
25027
|
+
/** column name */
|
|
24793
25028
|
| "setup"
|
|
24794
25029
|
/** column name */
|
|
24795
25030
|
| "setupCompleted"
|
|
@@ -26267,11 +26502,6 @@ export interface transactionLine_aggregate_order_by {
|
|
|
26267
26502
|
variance?: InputMaybe<transactionLine_variance_order_by>;
|
|
26268
26503
|
}
|
|
26269
26504
|
|
|
26270
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
26271
|
-
export interface transactionLine_append_input {
|
|
26272
|
-
matchers?: InputMaybe<Scalars["jsonb"]>;
|
|
26273
|
-
}
|
|
26274
|
-
|
|
26275
26505
|
/** input type for inserting array relation for remote table "accounting.transaction_line" */
|
|
26276
26506
|
export interface transactionLine_arr_rel_insert_input {
|
|
26277
26507
|
data: Array<transactionLine_insert_input>;
|
|
@@ -26293,6 +26523,8 @@ export interface transactionLine_bool_exp {
|
|
|
26293
26523
|
account?: InputMaybe<account_bool_exp>;
|
|
26294
26524
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum_comparison_exp>;
|
|
26295
26525
|
accountId?: InputMaybe<uuid_comparison_exp>;
|
|
26526
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum_comparison_exp>;
|
|
26527
|
+
applied_amount_tax_rate_id?: InputMaybe<uuid_comparison_exp>;
|
|
26296
26528
|
centTotal?: InputMaybe<Int_comparison_exp>;
|
|
26297
26529
|
contact?: InputMaybe<contact_bool_exp>;
|
|
26298
26530
|
contactId?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -26311,7 +26543,6 @@ export interface transactionLine_bool_exp {
|
|
|
26311
26543
|
matchReservationConfirmationCode?: InputMaybe<String_comparison_exp>;
|
|
26312
26544
|
matchReservationStripeGuestRef?: InputMaybe<String_comparison_exp>;
|
|
26313
26545
|
matchStatus?: InputMaybe<String_comparison_exp>;
|
|
26314
|
-
matchers?: InputMaybe<jsonb_comparison_exp>;
|
|
26315
26546
|
ownerStatement?: InputMaybe<owner_statement_bool_exp>;
|
|
26316
26547
|
ownerStatementId?: InputMaybe<uuid_comparison_exp>;
|
|
26317
26548
|
party?: InputMaybe<party_enum_comparison_exp>;
|
|
@@ -26333,21 +26564,6 @@ export type transactionLine_constraint =
|
|
|
26333
26564
|
/** unique or primary key constraint on columns "unique_ref", "transaction_id" */
|
|
26334
26565
|
| "transaction_line_transaction_id_unique_ref_key";
|
|
26335
26566
|
|
|
26336
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
26337
|
-
export interface transactionLine_delete_at_path_input {
|
|
26338
|
-
matchers?: InputMaybe<Array<Scalars["String"]>>;
|
|
26339
|
-
}
|
|
26340
|
-
|
|
26341
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
26342
|
-
export interface transactionLine_delete_elem_input {
|
|
26343
|
-
matchers?: InputMaybe<Scalars["Int"]>;
|
|
26344
|
-
}
|
|
26345
|
-
|
|
26346
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
26347
|
-
export interface transactionLine_delete_key_input {
|
|
26348
|
-
matchers?: InputMaybe<Scalars["String"]>;
|
|
26349
|
-
}
|
|
26350
|
-
|
|
26351
26567
|
/** input type for incrementing numeric columns in table "accounting.transaction_line" */
|
|
26352
26568
|
export interface transactionLine_inc_input {
|
|
26353
26569
|
centTotal?: InputMaybe<Scalars["Int"]>;
|
|
@@ -26359,6 +26575,8 @@ export interface transactionLine_insert_input {
|
|
|
26359
26575
|
account?: InputMaybe<account_obj_rel_insert_input>;
|
|
26360
26576
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum>;
|
|
26361
26577
|
accountId?: InputMaybe<Scalars["uuid"]>;
|
|
26578
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum>;
|
|
26579
|
+
applied_amount_tax_rate_id?: InputMaybe<Scalars["uuid"]>;
|
|
26362
26580
|
centTotal?: InputMaybe<Scalars["Int"]>;
|
|
26363
26581
|
contact?: InputMaybe<contact_obj_rel_insert_input>;
|
|
26364
26582
|
contactId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -26375,7 +26593,6 @@ export interface transactionLine_insert_input {
|
|
|
26375
26593
|
matchLineTypeClassification?: InputMaybe<Scalars["String"]>;
|
|
26376
26594
|
matchReservationConfirmationCode?: InputMaybe<Scalars["String"]>;
|
|
26377
26595
|
matchReservationStripeGuestRef?: InputMaybe<Scalars["String"]>;
|
|
26378
|
-
matchers?: InputMaybe<Scalars["jsonb"]>;
|
|
26379
26596
|
ownerStatement?: InputMaybe<owner_statement_obj_rel_insert_input>;
|
|
26380
26597
|
ownerStatementId?: InputMaybe<Scalars["uuid"]>;
|
|
26381
26598
|
party?: InputMaybe<party_enum>;
|
|
@@ -26393,6 +26610,7 @@ export interface transactionLine_insert_input {
|
|
|
26393
26610
|
/** order by max() on columns of table "accounting.transaction_line" */
|
|
26394
26611
|
export interface transactionLine_max_order_by {
|
|
26395
26612
|
accountId?: InputMaybe<order_by>;
|
|
26613
|
+
applied_amount_tax_rate_id?: InputMaybe<order_by>;
|
|
26396
26614
|
centTotal?: InputMaybe<order_by>;
|
|
26397
26615
|
contactId?: InputMaybe<order_by>;
|
|
26398
26616
|
createdAt?: InputMaybe<order_by>;
|
|
@@ -26416,6 +26634,7 @@ export interface transactionLine_max_order_by {
|
|
|
26416
26634
|
/** order by min() on columns of table "accounting.transaction_line" */
|
|
26417
26635
|
export interface transactionLine_min_order_by {
|
|
26418
26636
|
accountId?: InputMaybe<order_by>;
|
|
26637
|
+
applied_amount_tax_rate_id?: InputMaybe<order_by>;
|
|
26419
26638
|
centTotal?: InputMaybe<order_by>;
|
|
26420
26639
|
contactId?: InputMaybe<order_by>;
|
|
26421
26640
|
createdAt?: InputMaybe<order_by>;
|
|
@@ -26455,6 +26674,8 @@ export interface transactionLine_order_by {
|
|
|
26455
26674
|
account?: InputMaybe<account_order_by>;
|
|
26456
26675
|
accountAssignmentType?: InputMaybe<order_by>;
|
|
26457
26676
|
accountId?: InputMaybe<order_by>;
|
|
26677
|
+
applied_amount_tax_behavior?: InputMaybe<order_by>;
|
|
26678
|
+
applied_amount_tax_rate_id?: InputMaybe<order_by>;
|
|
26458
26679
|
centTotal?: InputMaybe<order_by>;
|
|
26459
26680
|
contact?: InputMaybe<contact_order_by>;
|
|
26460
26681
|
contactId?: InputMaybe<order_by>;
|
|
@@ -26472,7 +26693,6 @@ export interface transactionLine_order_by {
|
|
|
26472
26693
|
matchReservationConfirmationCode?: InputMaybe<order_by>;
|
|
26473
26694
|
matchReservationStripeGuestRef?: InputMaybe<order_by>;
|
|
26474
26695
|
matchStatus?: InputMaybe<order_by>;
|
|
26475
|
-
matchers?: InputMaybe<order_by>;
|
|
26476
26696
|
ownerStatement?: InputMaybe<owner_statement_order_by>;
|
|
26477
26697
|
ownerStatementId?: InputMaybe<order_by>;
|
|
26478
26698
|
party?: InputMaybe<order_by>;
|
|
@@ -26492,11 +26712,6 @@ export interface transactionLine_pk_columns_input {
|
|
|
26492
26712
|
id: Scalars["uuid"];
|
|
26493
26713
|
}
|
|
26494
26714
|
|
|
26495
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
26496
|
-
export interface transactionLine_prepend_input {
|
|
26497
|
-
matchers?: InputMaybe<Scalars["jsonb"]>;
|
|
26498
|
-
}
|
|
26499
|
-
|
|
26500
26715
|
/** select columns of table "accounting.transaction_line" */
|
|
26501
26716
|
export type transactionLine_select_column =
|
|
26502
26717
|
/** column name */
|
|
@@ -26504,6 +26719,10 @@ export type transactionLine_select_column =
|
|
|
26504
26719
|
/** column name */
|
|
26505
26720
|
| "accountId"
|
|
26506
26721
|
/** column name */
|
|
26722
|
+
| "applied_amount_tax_behavior"
|
|
26723
|
+
/** column name */
|
|
26724
|
+
| "applied_amount_tax_rate_id"
|
|
26725
|
+
/** column name */
|
|
26507
26726
|
| "centTotal"
|
|
26508
26727
|
/** column name */
|
|
26509
26728
|
| "contactId"
|
|
@@ -26530,8 +26749,6 @@ export type transactionLine_select_column =
|
|
|
26530
26749
|
/** column name */
|
|
26531
26750
|
| "matchStatus"
|
|
26532
26751
|
/** column name */
|
|
26533
|
-
| "matchers"
|
|
26534
|
-
/** column name */
|
|
26535
26752
|
| "ownerStatementId"
|
|
26536
26753
|
/** column name */
|
|
26537
26754
|
| "party"
|
|
@@ -26550,6 +26767,8 @@ export type transactionLine_select_column =
|
|
|
26550
26767
|
export interface transactionLine_set_input {
|
|
26551
26768
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum>;
|
|
26552
26769
|
accountId?: InputMaybe<Scalars["uuid"]>;
|
|
26770
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum>;
|
|
26771
|
+
applied_amount_tax_rate_id?: InputMaybe<Scalars["uuid"]>;
|
|
26553
26772
|
centTotal?: InputMaybe<Scalars["Int"]>;
|
|
26554
26773
|
contactId?: InputMaybe<Scalars["uuid"]>;
|
|
26555
26774
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -26562,7 +26781,6 @@ export interface transactionLine_set_input {
|
|
|
26562
26781
|
matchLineTypeClassification?: InputMaybe<Scalars["String"]>;
|
|
26563
26782
|
matchReservationConfirmationCode?: InputMaybe<Scalars["String"]>;
|
|
26564
26783
|
matchReservationStripeGuestRef?: InputMaybe<Scalars["String"]>;
|
|
26565
|
-
matchers?: InputMaybe<Scalars["jsonb"]>;
|
|
26566
26784
|
ownerStatementId?: InputMaybe<Scalars["uuid"]>;
|
|
26567
26785
|
party?: InputMaybe<party_enum>;
|
|
26568
26786
|
reservationId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -26602,6 +26820,8 @@ export interface transactionLine_stream_cursor_input {
|
|
|
26602
26820
|
export interface transactionLine_stream_cursor_value_input {
|
|
26603
26821
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum>;
|
|
26604
26822
|
accountId?: InputMaybe<Scalars["uuid"]>;
|
|
26823
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum>;
|
|
26824
|
+
applied_amount_tax_rate_id?: InputMaybe<Scalars["uuid"]>;
|
|
26605
26825
|
centTotal?: InputMaybe<Scalars["Int"]>;
|
|
26606
26826
|
contactId?: InputMaybe<Scalars["uuid"]>;
|
|
26607
26827
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -26615,7 +26835,6 @@ export interface transactionLine_stream_cursor_value_input {
|
|
|
26615
26835
|
matchReservationConfirmationCode?: InputMaybe<Scalars["String"]>;
|
|
26616
26836
|
matchReservationStripeGuestRef?: InputMaybe<Scalars["String"]>;
|
|
26617
26837
|
matchStatus?: InputMaybe<Scalars["String"]>;
|
|
26618
|
-
matchers?: InputMaybe<Scalars["jsonb"]>;
|
|
26619
26838
|
ownerStatementId?: InputMaybe<Scalars["uuid"]>;
|
|
26620
26839
|
party?: InputMaybe<party_enum>;
|
|
26621
26840
|
reservationId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -26638,6 +26857,10 @@ export type transactionLine_update_column =
|
|
|
26638
26857
|
/** column name */
|
|
26639
26858
|
| "accountId"
|
|
26640
26859
|
/** column name */
|
|
26860
|
+
| "applied_amount_tax_behavior"
|
|
26861
|
+
/** column name */
|
|
26862
|
+
| "applied_amount_tax_rate_id"
|
|
26863
|
+
/** column name */
|
|
26641
26864
|
| "centTotal"
|
|
26642
26865
|
/** column name */
|
|
26643
26866
|
| "contactId"
|
|
@@ -26662,8 +26885,6 @@ export type transactionLine_update_column =
|
|
|
26662
26885
|
/** column name */
|
|
26663
26886
|
| "matchReservationStripeGuestRef"
|
|
26664
26887
|
/** column name */
|
|
26665
|
-
| "matchers"
|
|
26666
|
-
/** column name */
|
|
26667
26888
|
| "ownerStatementId"
|
|
26668
26889
|
/** column name */
|
|
26669
26890
|
| "party"
|
|
@@ -26679,18 +26900,8 @@ export type transactionLine_update_column =
|
|
|
26679
26900
|
| "updatedAt";
|
|
26680
26901
|
|
|
26681
26902
|
export interface transactionLine_updates {
|
|
26682
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
26683
|
-
_append?: InputMaybe<transactionLine_append_input>;
|
|
26684
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
26685
|
-
_delete_at_path?: InputMaybe<transactionLine_delete_at_path_input>;
|
|
26686
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
26687
|
-
_delete_elem?: InputMaybe<transactionLine_delete_elem_input>;
|
|
26688
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
26689
|
-
_delete_key?: InputMaybe<transactionLine_delete_key_input>;
|
|
26690
26903
|
/** increments the numeric columns with given value of the filtered values */
|
|
26691
26904
|
_inc?: InputMaybe<transactionLine_inc_input>;
|
|
26692
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
26693
|
-
_prepend?: InputMaybe<transactionLine_prepend_input>;
|
|
26694
26905
|
/** sets the columns of the filtered rows to the given values */
|
|
26695
26906
|
_set?: InputMaybe<transactionLine_set_input>;
|
|
26696
26907
|
/** filter the rows which have to be updated */
|
|
@@ -26828,7 +27039,6 @@ export interface transaction_aggregate_order_by {
|
|
|
26828
27039
|
|
|
26829
27040
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
26830
27041
|
export interface transaction_append_input {
|
|
26831
|
-
matchers?: InputMaybe<Scalars["jsonb"]>;
|
|
26832
27042
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
26833
27043
|
}
|
|
26834
27044
|
|
|
@@ -26871,7 +27081,9 @@ export interface transaction_bool_exp {
|
|
|
26871
27081
|
lines_aggregate?: InputMaybe<transactionLine_aggregate_bool_exp>;
|
|
26872
27082
|
matchBankAccountLast4?: InputMaybe<String_comparison_exp>;
|
|
26873
27083
|
matchStatus?: InputMaybe<String_comparison_exp>;
|
|
26874
|
-
|
|
27084
|
+
match_line_type_classification?: InputMaybe<String_comparison_exp>;
|
|
27085
|
+
match_reservation_confirmation_code?: InputMaybe<String_comparison_exp>;
|
|
27086
|
+
match_reservation_stripe_guest_ref?: InputMaybe<String_comparison_exp>;
|
|
26875
27087
|
paidAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
26876
27088
|
paidStatus?: InputMaybe<paidStatus_enum_comparison_exp>;
|
|
26877
27089
|
recurringFeeId?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -26880,6 +27092,7 @@ export interface transaction_bool_exp {
|
|
|
26880
27092
|
recurringTemplateId?: InputMaybe<uuid_comparison_exp>;
|
|
26881
27093
|
recurringTemplateInstances?: InputMaybe<transaction_bool_exp>;
|
|
26882
27094
|
recurringTemplateInstances_aggregate?: InputMaybe<transaction_aggregate_bool_exp>;
|
|
27095
|
+
short_ref?: InputMaybe<String_comparison_exp>;
|
|
26883
27096
|
source?: InputMaybe<source_bool_exp>;
|
|
26884
27097
|
sourceId?: InputMaybe<uuid_comparison_exp>;
|
|
26885
27098
|
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
@@ -26897,23 +27110,22 @@ export type transaction_constraint =
|
|
|
26897
27110
|
/** unique or primary key constraint on columns "source_id" */
|
|
26898
27111
|
| "transaction_source_id_key"
|
|
26899
27112
|
/** unique or primary key constraint on columns "unique_ref", "tenant_id" */
|
|
26900
|
-
| "transaction_tenant_id_unique_ref_key"
|
|
27113
|
+
| "transaction_tenant_id_unique_ref_key"
|
|
27114
|
+
/** unique or primary key constraint on columns "short_ref", "tenant_id" */
|
|
27115
|
+
| "transaction_tenant_short_ref_unq";
|
|
26901
27116
|
|
|
26902
27117
|
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
26903
27118
|
export interface transaction_delete_at_path_input {
|
|
26904
|
-
matchers?: InputMaybe<Array<Scalars["String"]>>;
|
|
26905
27119
|
recurringPattern?: InputMaybe<Array<Scalars["String"]>>;
|
|
26906
27120
|
}
|
|
26907
27121
|
|
|
26908
27122
|
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
26909
27123
|
export interface transaction_delete_elem_input {
|
|
26910
|
-
matchers?: InputMaybe<Scalars["Int"]>;
|
|
26911
27124
|
recurringPattern?: InputMaybe<Scalars["Int"]>;
|
|
26912
27125
|
}
|
|
26913
27126
|
|
|
26914
27127
|
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
26915
27128
|
export interface transaction_delete_key_input {
|
|
26916
|
-
matchers?: InputMaybe<Scalars["String"]>;
|
|
26917
27129
|
recurringPattern?: InputMaybe<Scalars["String"]>;
|
|
26918
27130
|
}
|
|
26919
27131
|
|
|
@@ -26942,7 +27154,9 @@ export interface transaction_insert_input {
|
|
|
26942
27154
|
journalEntries?: InputMaybe<journalEntry_arr_rel_insert_input>;
|
|
26943
27155
|
lines?: InputMaybe<transactionLine_arr_rel_insert_input>;
|
|
26944
27156
|
matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
|
|
26945
|
-
|
|
27157
|
+
match_line_type_classification?: InputMaybe<Scalars["String"]>;
|
|
27158
|
+
match_reservation_confirmation_code?: InputMaybe<Scalars["String"]>;
|
|
27159
|
+
match_reservation_stripe_guest_ref?: InputMaybe<Scalars["String"]>;
|
|
26946
27160
|
paidAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
26947
27161
|
paidStatus?: InputMaybe<paidStatus_enum>;
|
|
26948
27162
|
recurringFeeId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -26950,6 +27164,8 @@ export interface transaction_insert_input {
|
|
|
26950
27164
|
recurringTemplate?: InputMaybe<transaction_obj_rel_insert_input>;
|
|
26951
27165
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
26952
27166
|
recurringTemplateInstances?: InputMaybe<transaction_arr_rel_insert_input>;
|
|
27167
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27168
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
26953
27169
|
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
26954
27170
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
26955
27171
|
status?: InputMaybe<activeStatus_enum>;
|
|
@@ -26973,9 +27189,14 @@ export interface transaction_max_order_by {
|
|
|
26973
27189
|
id?: InputMaybe<order_by>;
|
|
26974
27190
|
matchBankAccountLast4?: InputMaybe<order_by>;
|
|
26975
27191
|
matchStatus?: InputMaybe<order_by>;
|
|
27192
|
+
match_line_type_classification?: InputMaybe<order_by>;
|
|
27193
|
+
match_reservation_confirmation_code?: InputMaybe<order_by>;
|
|
27194
|
+
match_reservation_stripe_guest_ref?: InputMaybe<order_by>;
|
|
26976
27195
|
paidAt?: InputMaybe<order_by>;
|
|
26977
27196
|
recurringFeeId?: InputMaybe<order_by>;
|
|
26978
27197
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27198
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27199
|
+
short_ref?: InputMaybe<order_by>;
|
|
26979
27200
|
sourceId?: InputMaybe<order_by>;
|
|
26980
27201
|
tenantId?: InputMaybe<order_by>;
|
|
26981
27202
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -26995,9 +27216,14 @@ export interface transaction_min_order_by {
|
|
|
26995
27216
|
id?: InputMaybe<order_by>;
|
|
26996
27217
|
matchBankAccountLast4?: InputMaybe<order_by>;
|
|
26997
27218
|
matchStatus?: InputMaybe<order_by>;
|
|
27219
|
+
match_line_type_classification?: InputMaybe<order_by>;
|
|
27220
|
+
match_reservation_confirmation_code?: InputMaybe<order_by>;
|
|
27221
|
+
match_reservation_stripe_guest_ref?: InputMaybe<order_by>;
|
|
26998
27222
|
paidAt?: InputMaybe<order_by>;
|
|
26999
27223
|
recurringFeeId?: InputMaybe<order_by>;
|
|
27000
27224
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27225
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27226
|
+
short_ref?: InputMaybe<order_by>;
|
|
27001
27227
|
sourceId?: InputMaybe<order_by>;
|
|
27002
27228
|
tenantId?: InputMaybe<order_by>;
|
|
27003
27229
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -27039,7 +27265,9 @@ export interface transaction_order_by {
|
|
|
27039
27265
|
lines_aggregate?: InputMaybe<transactionLine_aggregate_order_by>;
|
|
27040
27266
|
matchBankAccountLast4?: InputMaybe<order_by>;
|
|
27041
27267
|
matchStatus?: InputMaybe<order_by>;
|
|
27042
|
-
|
|
27268
|
+
match_line_type_classification?: InputMaybe<order_by>;
|
|
27269
|
+
match_reservation_confirmation_code?: InputMaybe<order_by>;
|
|
27270
|
+
match_reservation_stripe_guest_ref?: InputMaybe<order_by>;
|
|
27043
27271
|
paidAt?: InputMaybe<order_by>;
|
|
27044
27272
|
paidStatus?: InputMaybe<order_by>;
|
|
27045
27273
|
recurringFeeId?: InputMaybe<order_by>;
|
|
@@ -27047,6 +27275,7 @@ export interface transaction_order_by {
|
|
|
27047
27275
|
recurringTemplate?: InputMaybe<transaction_order_by>;
|
|
27048
27276
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27049
27277
|
recurringTemplateInstances_aggregate?: InputMaybe<transaction_aggregate_order_by>;
|
|
27278
|
+
short_ref?: InputMaybe<order_by>;
|
|
27050
27279
|
source?: InputMaybe<source_order_by>;
|
|
27051
27280
|
sourceId?: InputMaybe<order_by>;
|
|
27052
27281
|
status?: InputMaybe<order_by>;
|
|
@@ -27064,7 +27293,6 @@ export interface transaction_pk_columns_input {
|
|
|
27064
27293
|
|
|
27065
27294
|
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
27066
27295
|
export interface transaction_prepend_input {
|
|
27067
|
-
matchers?: InputMaybe<Scalars["jsonb"]>;
|
|
27068
27296
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
27069
27297
|
}
|
|
27070
27298
|
|
|
@@ -27095,7 +27323,11 @@ export type transaction_select_column =
|
|
|
27095
27323
|
/** column name */
|
|
27096
27324
|
| "matchStatus"
|
|
27097
27325
|
/** column name */
|
|
27098
|
-
| "
|
|
27326
|
+
| "match_line_type_classification"
|
|
27327
|
+
/** column name */
|
|
27328
|
+
| "match_reservation_confirmation_code"
|
|
27329
|
+
/** column name */
|
|
27330
|
+
| "match_reservation_stripe_guest_ref"
|
|
27099
27331
|
/** column name */
|
|
27100
27332
|
| "paidAt"
|
|
27101
27333
|
/** column name */
|
|
@@ -27107,6 +27339,8 @@ export type transaction_select_column =
|
|
|
27107
27339
|
/** column name */
|
|
27108
27340
|
| "recurringTemplateId"
|
|
27109
27341
|
/** column name */
|
|
27342
|
+
| "short_ref"
|
|
27343
|
+
/** column name */
|
|
27110
27344
|
| "sourceId"
|
|
27111
27345
|
/** column name */
|
|
27112
27346
|
| "status"
|
|
@@ -27132,12 +27366,16 @@ export interface transaction_set_input {
|
|
|
27132
27366
|
dueAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
27133
27367
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
27134
27368
|
matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
|
|
27135
|
-
|
|
27369
|
+
match_line_type_classification?: InputMaybe<Scalars["String"]>;
|
|
27370
|
+
match_reservation_confirmation_code?: InputMaybe<Scalars["String"]>;
|
|
27371
|
+
match_reservation_stripe_guest_ref?: InputMaybe<Scalars["String"]>;
|
|
27136
27372
|
paidAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
27137
27373
|
paidStatus?: InputMaybe<paidStatus_enum>;
|
|
27138
27374
|
recurringFeeId?: InputMaybe<Scalars["uuid"]>;
|
|
27139
27375
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
27140
27376
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
27377
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27378
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
27141
27379
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
27142
27380
|
status?: InputMaybe<activeStatus_enum>;
|
|
27143
27381
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -27183,12 +27421,16 @@ export interface transaction_stream_cursor_value_input {
|
|
|
27183
27421
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
27184
27422
|
matchBankAccountLast4?: InputMaybe<Scalars["String"]>;
|
|
27185
27423
|
matchStatus?: InputMaybe<Scalars["String"]>;
|
|
27186
|
-
|
|
27424
|
+
match_line_type_classification?: InputMaybe<Scalars["String"]>;
|
|
27425
|
+
match_reservation_confirmation_code?: InputMaybe<Scalars["String"]>;
|
|
27426
|
+
match_reservation_stripe_guest_ref?: InputMaybe<Scalars["String"]>;
|
|
27187
27427
|
paidAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
27188
27428
|
paidStatus?: InputMaybe<paidStatus_enum>;
|
|
27189
27429
|
recurringFeeId?: InputMaybe<Scalars["uuid"]>;
|
|
27190
27430
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
27191
27431
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
27432
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27433
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
27192
27434
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
27193
27435
|
status?: InputMaybe<activeStatus_enum>;
|
|
27194
27436
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -27227,7 +27469,11 @@ export type transaction_update_column =
|
|
|
27227
27469
|
/** column name */
|
|
27228
27470
|
| "matchBankAccountLast4"
|
|
27229
27471
|
/** column name */
|
|
27230
|
-
| "
|
|
27472
|
+
| "match_line_type_classification"
|
|
27473
|
+
/** column name */
|
|
27474
|
+
| "match_reservation_confirmation_code"
|
|
27475
|
+
/** column name */
|
|
27476
|
+
| "match_reservation_stripe_guest_ref"
|
|
27231
27477
|
/** column name */
|
|
27232
27478
|
| "paidAt"
|
|
27233
27479
|
/** column name */
|
|
@@ -27239,6 +27485,8 @@ export type transaction_update_column =
|
|
|
27239
27485
|
/** column name */
|
|
27240
27486
|
| "recurringTemplateId"
|
|
27241
27487
|
/** column name */
|
|
27488
|
+
| "short_ref"
|
|
27489
|
+
/** column name */
|
|
27242
27490
|
| "sourceId"
|
|
27243
27491
|
/** column name */
|
|
27244
27492
|
| "status"
|
|
@@ -35047,6 +35295,7 @@ export declare const generatedSchema: {
|
|
|
35047
35295
|
name: { __type: "String!" };
|
|
35048
35296
|
phone: { __type: "String" };
|
|
35049
35297
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35298
|
+
short_ref: { __type: "String" };
|
|
35050
35299
|
source: { __type: "source" };
|
|
35051
35300
|
sourceId: { __type: "uuid" };
|
|
35052
35301
|
status: { __type: "activeStatus_enum" };
|
|
@@ -35285,6 +35534,7 @@ export declare const generatedSchema: {
|
|
|
35285
35534
|
name: { __type: "String_comparison_exp" };
|
|
35286
35535
|
phone: { __type: "String_comparison_exp" };
|
|
35287
35536
|
pmsStatus: { __type: "activeStatus_enum_comparison_exp" };
|
|
35537
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
35288
35538
|
source: { __type: "source_bool_exp" };
|
|
35289
35539
|
sourceId: { __type: "uuid_comparison_exp" };
|
|
35290
35540
|
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
@@ -35325,6 +35575,7 @@ export declare const generatedSchema: {
|
|
|
35325
35575
|
name: { __type: "String" };
|
|
35326
35576
|
phone: { __type: "String" };
|
|
35327
35577
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35578
|
+
short_ref: { __type: "String" };
|
|
35328
35579
|
source: { __type: "source_obj_rel_insert_input" };
|
|
35329
35580
|
sourceId: { __type: "uuid" };
|
|
35330
35581
|
status: { __type: "activeStatus_enum" };
|
|
@@ -35348,6 +35599,7 @@ export declare const generatedSchema: {
|
|
|
35348
35599
|
id: { __type: "uuid" };
|
|
35349
35600
|
name: { __type: "String" };
|
|
35350
35601
|
phone: { __type: "String" };
|
|
35602
|
+
short_ref: { __type: "String" };
|
|
35351
35603
|
sourceId: { __type: "uuid" };
|
|
35352
35604
|
taxId: { __type: "String" };
|
|
35353
35605
|
tenantId: { __type: "uuid" };
|
|
@@ -35364,6 +35616,7 @@ export declare const generatedSchema: {
|
|
|
35364
35616
|
id: { __type: "uuid" };
|
|
35365
35617
|
name: { __type: "String" };
|
|
35366
35618
|
phone: { __type: "String" };
|
|
35619
|
+
short_ref: { __type: "String" };
|
|
35367
35620
|
sourceId: { __type: "uuid" };
|
|
35368
35621
|
taxId: { __type: "String" };
|
|
35369
35622
|
tenantId: { __type: "uuid" };
|
|
@@ -35403,6 +35656,7 @@ export declare const generatedSchema: {
|
|
|
35403
35656
|
name: { __type: "order_by" };
|
|
35404
35657
|
phone: { __type: "order_by" };
|
|
35405
35658
|
pmsStatus: { __type: "order_by" };
|
|
35659
|
+
short_ref: { __type: "order_by" };
|
|
35406
35660
|
source: { __type: "source_order_by" };
|
|
35407
35661
|
sourceId: { __type: "order_by" };
|
|
35408
35662
|
status: { __type: "order_by" };
|
|
@@ -35433,6 +35687,7 @@ export declare const generatedSchema: {
|
|
|
35433
35687
|
name: { __type: "String" };
|
|
35434
35688
|
phone: { __type: "String" };
|
|
35435
35689
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35690
|
+
short_ref: { __type: "String" };
|
|
35436
35691
|
sourceId: { __type: "uuid" };
|
|
35437
35692
|
status: { __type: "activeStatus_enum" };
|
|
35438
35693
|
taxId: { __type: "String" };
|
|
@@ -35458,6 +35713,7 @@ export declare const generatedSchema: {
|
|
|
35458
35713
|
name: { __type: "String" };
|
|
35459
35714
|
phone: { __type: "String" };
|
|
35460
35715
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35716
|
+
short_ref: { __type: "String" };
|
|
35461
35717
|
sourceId: { __type: "uuid" };
|
|
35462
35718
|
status: { __type: "activeStatus_enum" };
|
|
35463
35719
|
taxId: { __type: "String" };
|
|
@@ -35634,13 +35890,16 @@ export declare const generatedSchema: {
|
|
|
35634
35890
|
app_id: { __type: "String!" };
|
|
35635
35891
|
description: { __type: "String" };
|
|
35636
35892
|
id: { __type: "uuid!" };
|
|
35893
|
+
is_public: { __type: "Boolean!" };
|
|
35637
35894
|
left_type: { __type: "String" };
|
|
35638
35895
|
mapping_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35639
35896
|
right_type: { __type: "String" };
|
|
35897
|
+
run_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35640
35898
|
setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35641
35899
|
title: { __type: "String!" };
|
|
35642
35900
|
type: { __type: "flow_type" };
|
|
35643
35901
|
uniqueRef: { __type: "String!" };
|
|
35902
|
+
use_global_mapping: { __type: "Boolean!" };
|
|
35644
35903
|
};
|
|
35645
35904
|
core_flow_aggregate: {
|
|
35646
35905
|
__typename: { __type: "String!" };
|
|
@@ -35648,8 +35907,26 @@ export declare const generatedSchema: {
|
|
|
35648
35907
|
nodes: { __type: "[core_flow!]!" };
|
|
35649
35908
|
};
|
|
35650
35909
|
core_flow_aggregate_bool_exp: {
|
|
35910
|
+
bool_and: { __type: "core_flow_aggregate_bool_exp_bool_and" };
|
|
35911
|
+
bool_or: { __type: "core_flow_aggregate_bool_exp_bool_or" };
|
|
35651
35912
|
count: { __type: "core_flow_aggregate_bool_exp_count" };
|
|
35652
35913
|
};
|
|
35914
|
+
core_flow_aggregate_bool_exp_bool_and: {
|
|
35915
|
+
arguments: {
|
|
35916
|
+
__type: "core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns!";
|
|
35917
|
+
};
|
|
35918
|
+
distinct: { __type: "Boolean" };
|
|
35919
|
+
filter: { __type: "core_flow_bool_exp" };
|
|
35920
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
35921
|
+
};
|
|
35922
|
+
core_flow_aggregate_bool_exp_bool_or: {
|
|
35923
|
+
arguments: {
|
|
35924
|
+
__type: "core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns!";
|
|
35925
|
+
};
|
|
35926
|
+
distinct: { __type: "Boolean" };
|
|
35927
|
+
filter: { __type: "core_flow_bool_exp" };
|
|
35928
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
35929
|
+
};
|
|
35653
35930
|
core_flow_aggregate_bool_exp_count: {
|
|
35654
35931
|
arguments: { __type: "[core_flow_select_column!]" };
|
|
35655
35932
|
distinct: { __type: "Boolean" };
|
|
@@ -35672,6 +35949,7 @@ export declare const generatedSchema: {
|
|
|
35672
35949
|
};
|
|
35673
35950
|
core_flow_append_input: {
|
|
35674
35951
|
mapping_schema: { __type: "jsonb" };
|
|
35952
|
+
run_schema: { __type: "jsonb" };
|
|
35675
35953
|
setting_schema: { __type: "jsonb" };
|
|
35676
35954
|
};
|
|
35677
35955
|
core_flow_arr_rel_insert_input: {
|
|
@@ -35685,37 +35963,46 @@ export declare const generatedSchema: {
|
|
|
35685
35963
|
app_id: { __type: "String_comparison_exp" };
|
|
35686
35964
|
description: { __type: "String_comparison_exp" };
|
|
35687
35965
|
id: { __type: "uuid_comparison_exp" };
|
|
35966
|
+
is_public: { __type: "Boolean_comparison_exp" };
|
|
35688
35967
|
left_type: { __type: "String_comparison_exp" };
|
|
35689
35968
|
mapping_schema: { __type: "jsonb_comparison_exp" };
|
|
35690
35969
|
right_type: { __type: "String_comparison_exp" };
|
|
35970
|
+
run_schema: { __type: "jsonb_comparison_exp" };
|
|
35691
35971
|
setting_schema: { __type: "jsonb_comparison_exp" };
|
|
35692
35972
|
title: { __type: "String_comparison_exp" };
|
|
35693
35973
|
type: { __type: "flow_type_comparison_exp" };
|
|
35694
35974
|
uniqueRef: { __type: "String_comparison_exp" };
|
|
35975
|
+
use_global_mapping: { __type: "Boolean_comparison_exp" };
|
|
35695
35976
|
};
|
|
35696
35977
|
core_flow_delete_at_path_input: {
|
|
35697
35978
|
mapping_schema: { __type: "[String!]" };
|
|
35979
|
+
run_schema: { __type: "[String!]" };
|
|
35698
35980
|
setting_schema: { __type: "[String!]" };
|
|
35699
35981
|
};
|
|
35700
35982
|
core_flow_delete_elem_input: {
|
|
35701
35983
|
mapping_schema: { __type: "Int" };
|
|
35984
|
+
run_schema: { __type: "Int" };
|
|
35702
35985
|
setting_schema: { __type: "Int" };
|
|
35703
35986
|
};
|
|
35704
35987
|
core_flow_delete_key_input: {
|
|
35705
35988
|
mapping_schema: { __type: "String" };
|
|
35989
|
+
run_schema: { __type: "String" };
|
|
35706
35990
|
setting_schema: { __type: "String" };
|
|
35707
35991
|
};
|
|
35708
35992
|
core_flow_insert_input: {
|
|
35709
35993
|
app_id: { __type: "String" };
|
|
35710
35994
|
description: { __type: "String" };
|
|
35711
35995
|
id: { __type: "uuid" };
|
|
35996
|
+
is_public: { __type: "Boolean" };
|
|
35712
35997
|
left_type: { __type: "String" };
|
|
35713
35998
|
mapping_schema: { __type: "jsonb" };
|
|
35714
35999
|
right_type: { __type: "String" };
|
|
36000
|
+
run_schema: { __type: "jsonb" };
|
|
35715
36001
|
setting_schema: { __type: "jsonb" };
|
|
35716
36002
|
title: { __type: "String" };
|
|
35717
36003
|
type: { __type: "flow_type" };
|
|
35718
36004
|
uniqueRef: { __type: "String" };
|
|
36005
|
+
use_global_mapping: { __type: "Boolean" };
|
|
35719
36006
|
};
|
|
35720
36007
|
core_flow_mapping: {
|
|
35721
36008
|
__typename: { __type: "String!" };
|
|
@@ -35723,11 +36010,12 @@ export declare const generatedSchema: {
|
|
|
35723
36010
|
account_id: { __type: "uuid" };
|
|
35724
36011
|
booking_channel: { __type: "booking_channel" };
|
|
35725
36012
|
booking_channel_id: { __type: "uuid" };
|
|
36013
|
+
connection_id: { __type: "uuid!" };
|
|
35726
36014
|
contact: { __type: "contact" };
|
|
35727
36015
|
contact_id: { __type: "uuid" };
|
|
35728
36016
|
createdAt: { __type: "timestamptz!" };
|
|
35729
|
-
flow: { __type: "core_flow
|
|
35730
|
-
flow_id: { __type: "uuid
|
|
36017
|
+
flow: { __type: "core_flow" };
|
|
36018
|
+
flow_id: { __type: "uuid" };
|
|
35731
36019
|
id: { __type: "uuid!" };
|
|
35732
36020
|
listing: { __type: "listing" };
|
|
35733
36021
|
listing_id: { __type: "uuid" };
|
|
@@ -35767,6 +36055,7 @@ export declare const generatedSchema: {
|
|
|
35767
36055
|
account_id: { __type: "uuid_comparison_exp" };
|
|
35768
36056
|
booking_channel: { __type: "booking_channel_bool_exp" };
|
|
35769
36057
|
booking_channel_id: { __type: "uuid_comparison_exp" };
|
|
36058
|
+
connection_id: { __type: "uuid_comparison_exp" };
|
|
35770
36059
|
contact: { __type: "contact_bool_exp" };
|
|
35771
36060
|
contact_id: { __type: "uuid_comparison_exp" };
|
|
35772
36061
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
@@ -35793,6 +36082,7 @@ export declare const generatedSchema: {
|
|
|
35793
36082
|
account_id: { __type: "uuid" };
|
|
35794
36083
|
booking_channel: { __type: "booking_channel_obj_rel_insert_input" };
|
|
35795
36084
|
booking_channel_id: { __type: "uuid" };
|
|
36085
|
+
connection_id: { __type: "uuid" };
|
|
35796
36086
|
contact: { __type: "contact_obj_rel_insert_input" };
|
|
35797
36087
|
contact_id: { __type: "uuid" };
|
|
35798
36088
|
createdAt: { __type: "timestamptz" };
|
|
@@ -35815,6 +36105,7 @@ export declare const generatedSchema: {
|
|
|
35815
36105
|
__typename: { __type: "String!" };
|
|
35816
36106
|
account_id: { __type: "uuid" };
|
|
35817
36107
|
booking_channel_id: { __type: "uuid" };
|
|
36108
|
+
connection_id: { __type: "uuid" };
|
|
35818
36109
|
contact_id: { __type: "uuid" };
|
|
35819
36110
|
createdAt: { __type: "timestamptz" };
|
|
35820
36111
|
flow_id: { __type: "uuid" };
|
|
@@ -35830,6 +36121,7 @@ export declare const generatedSchema: {
|
|
|
35830
36121
|
__typename: { __type: "String!" };
|
|
35831
36122
|
account_id: { __type: "uuid" };
|
|
35832
36123
|
booking_channel_id: { __type: "uuid" };
|
|
36124
|
+
connection_id: { __type: "uuid" };
|
|
35833
36125
|
contact_id: { __type: "uuid" };
|
|
35834
36126
|
createdAt: { __type: "timestamptz" };
|
|
35835
36127
|
flow_id: { __type: "uuid" };
|
|
@@ -35856,6 +36148,7 @@ export declare const generatedSchema: {
|
|
|
35856
36148
|
account_id: { __type: "order_by" };
|
|
35857
36149
|
booking_channel: { __type: "booking_channel_order_by" };
|
|
35858
36150
|
booking_channel_id: { __type: "order_by" };
|
|
36151
|
+
connection_id: { __type: "order_by" };
|
|
35859
36152
|
contact: { __type: "contact_order_by" };
|
|
35860
36153
|
contact_id: { __type: "order_by" };
|
|
35861
36154
|
createdAt: { __type: "order_by" };
|
|
@@ -35879,6 +36172,7 @@ export declare const generatedSchema: {
|
|
|
35879
36172
|
core_flow_mapping_set_input: {
|
|
35880
36173
|
account_id: { __type: "uuid" };
|
|
35881
36174
|
booking_channel_id: { __type: "uuid" };
|
|
36175
|
+
connection_id: { __type: "uuid" };
|
|
35882
36176
|
contact_id: { __type: "uuid" };
|
|
35883
36177
|
createdAt: { __type: "timestamptz" };
|
|
35884
36178
|
flow_id: { __type: "uuid" };
|
|
@@ -35898,6 +36192,7 @@ export declare const generatedSchema: {
|
|
|
35898
36192
|
core_flow_mapping_stream_cursor_value_input: {
|
|
35899
36193
|
account_id: { __type: "uuid" };
|
|
35900
36194
|
booking_channel_id: { __type: "uuid" };
|
|
36195
|
+
connection_id: { __type: "uuid" };
|
|
35901
36196
|
contact_id: { __type: "uuid" };
|
|
35902
36197
|
createdAt: { __type: "timestamptz" };
|
|
35903
36198
|
flow_id: { __type: "uuid" };
|
|
@@ -35979,30 +36274,37 @@ export declare const generatedSchema: {
|
|
|
35979
36274
|
app_id: { __type: "order_by" };
|
|
35980
36275
|
description: { __type: "order_by" };
|
|
35981
36276
|
id: { __type: "order_by" };
|
|
36277
|
+
is_public: { __type: "order_by" };
|
|
35982
36278
|
left_type: { __type: "order_by" };
|
|
35983
36279
|
mapping_schema: { __type: "order_by" };
|
|
35984
36280
|
right_type: { __type: "order_by" };
|
|
36281
|
+
run_schema: { __type: "order_by" };
|
|
35985
36282
|
setting_schema: { __type: "order_by" };
|
|
35986
36283
|
title: { __type: "order_by" };
|
|
35987
36284
|
type: { __type: "order_by" };
|
|
35988
36285
|
uniqueRef: { __type: "order_by" };
|
|
36286
|
+
use_global_mapping: { __type: "order_by" };
|
|
35989
36287
|
};
|
|
35990
36288
|
core_flow_pk_columns_input: { id: { __type: "uuid!" } };
|
|
35991
36289
|
core_flow_prepend_input: {
|
|
35992
36290
|
mapping_schema: { __type: "jsonb" };
|
|
36291
|
+
run_schema: { __type: "jsonb" };
|
|
35993
36292
|
setting_schema: { __type: "jsonb" };
|
|
35994
36293
|
};
|
|
35995
36294
|
core_flow_set_input: {
|
|
35996
36295
|
app_id: { __type: "String" };
|
|
35997
36296
|
description: { __type: "String" };
|
|
35998
36297
|
id: { __type: "uuid" };
|
|
36298
|
+
is_public: { __type: "Boolean" };
|
|
35999
36299
|
left_type: { __type: "String" };
|
|
36000
36300
|
mapping_schema: { __type: "jsonb" };
|
|
36001
36301
|
right_type: { __type: "String" };
|
|
36302
|
+
run_schema: { __type: "jsonb" };
|
|
36002
36303
|
setting_schema: { __type: "jsonb" };
|
|
36003
36304
|
title: { __type: "String" };
|
|
36004
36305
|
type: { __type: "flow_type" };
|
|
36005
36306
|
uniqueRef: { __type: "String" };
|
|
36307
|
+
use_global_mapping: { __type: "Boolean" };
|
|
36006
36308
|
};
|
|
36007
36309
|
core_flow_setting: {
|
|
36008
36310
|
__typename: { __type: "String!" };
|
|
@@ -36214,13 +36516,16 @@ export declare const generatedSchema: {
|
|
|
36214
36516
|
app_id: { __type: "String" };
|
|
36215
36517
|
description: { __type: "String" };
|
|
36216
36518
|
id: { __type: "uuid" };
|
|
36519
|
+
is_public: { __type: "Boolean" };
|
|
36217
36520
|
left_type: { __type: "String" };
|
|
36218
36521
|
mapping_schema: { __type: "jsonb" };
|
|
36219
36522
|
right_type: { __type: "String" };
|
|
36523
|
+
run_schema: { __type: "jsonb" };
|
|
36220
36524
|
setting_schema: { __type: "jsonb" };
|
|
36221
36525
|
title: { __type: "String" };
|
|
36222
36526
|
type: { __type: "flow_type" };
|
|
36223
36527
|
uniqueRef: { __type: "String" };
|
|
36528
|
+
use_global_mapping: { __type: "Boolean" };
|
|
36224
36529
|
};
|
|
36225
36530
|
core_flow_updates: {
|
|
36226
36531
|
_append: { __type: "core_flow_append_input" };
|
|
@@ -39025,6 +39330,7 @@ export declare const generatedSchema: {
|
|
|
39025
39330
|
where: "setting_bool_exp";
|
|
39026
39331
|
};
|
|
39027
39332
|
};
|
|
39333
|
+
short_ref: { __type: "String" };
|
|
39028
39334
|
source: { __type: "source" };
|
|
39029
39335
|
sourceId: { __type: "uuid" };
|
|
39030
39336
|
status: { __type: "activeStatus_enum" };
|
|
@@ -39780,6 +40086,7 @@ export declare const generatedSchema: {
|
|
|
39780
40086
|
settingsRight: { __type: "setting_bool_exp" };
|
|
39781
40087
|
settingsRight_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
39782
40088
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
40089
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
39783
40090
|
source: { __type: "source_bool_exp" };
|
|
39784
40091
|
sourceId: { __type: "uuid_comparison_exp" };
|
|
39785
40092
|
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
@@ -40494,6 +40801,7 @@ export declare const generatedSchema: {
|
|
|
40494
40801
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
40495
40802
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
40496
40803
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
40804
|
+
short_ref: { __type: "String" };
|
|
40497
40805
|
source: { __type: "source_obj_rel_insert_input" };
|
|
40498
40806
|
sourceId: { __type: "uuid" };
|
|
40499
40807
|
status: { __type: "activeStatus_enum" };
|
|
@@ -40525,6 +40833,7 @@ export declare const generatedSchema: {
|
|
|
40525
40833
|
imageUri: { __type: "String" };
|
|
40526
40834
|
name: { __type: "String" };
|
|
40527
40835
|
ownerContactId: { __type: "uuid" };
|
|
40836
|
+
short_ref: { __type: "String" };
|
|
40528
40837
|
sourceId: { __type: "uuid" };
|
|
40529
40838
|
tenantId: { __type: "uuid" };
|
|
40530
40839
|
title: { __type: "String" };
|
|
@@ -40551,6 +40860,7 @@ export declare const generatedSchema: {
|
|
|
40551
40860
|
imageUri: { __type: "order_by" };
|
|
40552
40861
|
name: { __type: "order_by" };
|
|
40553
40862
|
ownerContactId: { __type: "order_by" };
|
|
40863
|
+
short_ref: { __type: "order_by" };
|
|
40554
40864
|
sourceId: { __type: "order_by" };
|
|
40555
40865
|
tenantId: { __type: "order_by" };
|
|
40556
40866
|
title: { __type: "order_by" };
|
|
@@ -40578,6 +40888,7 @@ export declare const generatedSchema: {
|
|
|
40578
40888
|
imageUri: { __type: "String" };
|
|
40579
40889
|
name: { __type: "String" };
|
|
40580
40890
|
ownerContactId: { __type: "uuid" };
|
|
40891
|
+
short_ref: { __type: "String" };
|
|
40581
40892
|
sourceId: { __type: "uuid" };
|
|
40582
40893
|
tenantId: { __type: "uuid" };
|
|
40583
40894
|
title: { __type: "String" };
|
|
@@ -40604,6 +40915,7 @@ export declare const generatedSchema: {
|
|
|
40604
40915
|
imageUri: { __type: "order_by" };
|
|
40605
40916
|
name: { __type: "order_by" };
|
|
40606
40917
|
ownerContactId: { __type: "order_by" };
|
|
40918
|
+
short_ref: { __type: "order_by" };
|
|
40607
40919
|
sourceId: { __type: "order_by" };
|
|
40608
40920
|
tenantId: { __type: "order_by" };
|
|
40609
40921
|
title: { __type: "order_by" };
|
|
@@ -40674,6 +40986,7 @@ export declare const generatedSchema: {
|
|
|
40674
40986
|
settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
|
|
40675
40987
|
settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
|
|
40676
40988
|
settings_aggregate: { __type: "setting_aggregate_order_by" };
|
|
40989
|
+
short_ref: { __type: "order_by" };
|
|
40677
40990
|
source: { __type: "source_order_by" };
|
|
40678
40991
|
sourceId: { __type: "order_by" };
|
|
40679
40992
|
status: { __type: "order_by" };
|
|
@@ -41082,6 +41395,7 @@ export declare const generatedSchema: {
|
|
|
41082
41395
|
ownerContactId: { __type: "uuid" };
|
|
41083
41396
|
pmsAddressData: { __type: "jsonb" };
|
|
41084
41397
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
41398
|
+
short_ref: { __type: "String" };
|
|
41085
41399
|
sourceId: { __type: "uuid" };
|
|
41086
41400
|
status: { __type: "activeStatus_enum" };
|
|
41087
41401
|
tenantId: { __type: "uuid" };
|
|
@@ -41158,6 +41472,7 @@ export declare const generatedSchema: {
|
|
|
41158
41472
|
ownerContactId: { __type: "uuid" };
|
|
41159
41473
|
pmsAddressData: { __type: "jsonb" };
|
|
41160
41474
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
41475
|
+
short_ref: { __type: "String" };
|
|
41161
41476
|
sourceId: { __type: "uuid" };
|
|
41162
41477
|
status: { __type: "activeStatus_enum" };
|
|
41163
41478
|
tenantId: { __type: "uuid" };
|
|
@@ -46256,12 +46571,7 @@ export declare const generatedSchema: {
|
|
|
46256
46571
|
updateTransactionLine: {
|
|
46257
46572
|
__type: "transactionLine";
|
|
46258
46573
|
__args: {
|
|
46259
|
-
_append: "transactionLine_append_input";
|
|
46260
|
-
_delete_at_path: "transactionLine_delete_at_path_input";
|
|
46261
|
-
_delete_elem: "transactionLine_delete_elem_input";
|
|
46262
|
-
_delete_key: "transactionLine_delete_key_input";
|
|
46263
46574
|
_inc: "transactionLine_inc_input";
|
|
46264
|
-
_prepend: "transactionLine_prepend_input";
|
|
46265
46575
|
_set: "transactionLine_set_input";
|
|
46266
46576
|
pk_columns: "transactionLine_pk_columns_input!";
|
|
46267
46577
|
};
|
|
@@ -46269,12 +46579,7 @@ export declare const generatedSchema: {
|
|
|
46269
46579
|
updateTransactionLines: {
|
|
46270
46580
|
__type: "transactionLine_mutation_response";
|
|
46271
46581
|
__args: {
|
|
46272
|
-
_append: "transactionLine_append_input";
|
|
46273
|
-
_delete_at_path: "transactionLine_delete_at_path_input";
|
|
46274
|
-
_delete_elem: "transactionLine_delete_elem_input";
|
|
46275
|
-
_delete_key: "transactionLine_delete_key_input";
|
|
46276
46582
|
_inc: "transactionLine_inc_input";
|
|
46277
|
-
_prepend: "transactionLine_prepend_input";
|
|
46278
46583
|
_set: "transactionLine_set_input";
|
|
46279
46584
|
where: "transactionLine_bool_exp!";
|
|
46280
46585
|
};
|
|
@@ -56344,6 +56649,7 @@ export declare const generatedSchema: {
|
|
|
56344
56649
|
};
|
|
56345
56650
|
};
|
|
56346
56651
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
56652
|
+
general_ledger_status: { __type: "activeStatus_enum!" };
|
|
56347
56653
|
guestName: { __type: "String" };
|
|
56348
56654
|
guests: { __type: "Int" };
|
|
56349
56655
|
id: { __type: "uuid!" };
|
|
@@ -56372,6 +56678,7 @@ export declare const generatedSchema: {
|
|
|
56372
56678
|
listingConnection: { __type: "listing_connection" };
|
|
56373
56679
|
listingConnectionId: { __type: "uuid" };
|
|
56374
56680
|
listingId: { __type: "uuid" };
|
|
56681
|
+
manager_cent_total: { __type: "bigint" };
|
|
56375
56682
|
matchPaymentCustomerRef: { __type: "String" };
|
|
56376
56683
|
members: {
|
|
56377
56684
|
__type: "[tenant_user!]!";
|
|
@@ -56417,6 +56724,7 @@ export declare const generatedSchema: {
|
|
|
56417
56724
|
where: "owner_statement_line_bool_exp";
|
|
56418
56725
|
};
|
|
56419
56726
|
};
|
|
56727
|
+
owners_cent_total: { __type: "bigint" };
|
|
56420
56728
|
paidStatus: { __type: "paidStatus_enum" };
|
|
56421
56729
|
paymentLines: {
|
|
56422
56730
|
__type: "[payment_line!]!";
|
|
@@ -56500,6 +56808,7 @@ export declare const generatedSchema: {
|
|
|
56500
56808
|
where: "setting_bool_exp";
|
|
56501
56809
|
};
|
|
56502
56810
|
};
|
|
56811
|
+
short_ref: { __type: "String" };
|
|
56503
56812
|
similarReservations: {
|
|
56504
56813
|
__type: "[reservation!]!";
|
|
56505
56814
|
__args: {
|
|
@@ -56543,6 +56852,7 @@ export declare const generatedSchema: {
|
|
|
56543
56852
|
};
|
|
56544
56853
|
};
|
|
56545
56854
|
status: { __type: "reservation_status_enum" };
|
|
56855
|
+
tax_cent_total: { __type: "bigint" };
|
|
56546
56856
|
tenant: { __type: "tenant" };
|
|
56547
56857
|
tenantId: { __type: "uuid" };
|
|
56548
56858
|
transactionLines: {
|
|
@@ -57191,7 +57501,10 @@ export declare const generatedSchema: {
|
|
|
57191
57501
|
centService: { __type: "Float" };
|
|
57192
57502
|
centTotal: { __type: "Float" };
|
|
57193
57503
|
guests: { __type: "Float" };
|
|
57504
|
+
manager_cent_total: { __type: "Float" };
|
|
57194
57505
|
nights: { __type: "Float" };
|
|
57506
|
+
owners_cent_total: { __type: "Float" };
|
|
57507
|
+
tax_cent_total: { __type: "Float" };
|
|
57195
57508
|
};
|
|
57196
57509
|
reservation_avg_order_by: {
|
|
57197
57510
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57205,7 +57518,10 @@ export declare const generatedSchema: {
|
|
|
57205
57518
|
centService: { __type: "order_by" };
|
|
57206
57519
|
centTotal: { __type: "order_by" };
|
|
57207
57520
|
guests: { __type: "order_by" };
|
|
57521
|
+
manager_cent_total: { __type: "order_by" };
|
|
57208
57522
|
nights: { __type: "order_by" };
|
|
57523
|
+
owners_cent_total: { __type: "order_by" };
|
|
57524
|
+
tax_cent_total: { __type: "order_by" };
|
|
57209
57525
|
};
|
|
57210
57526
|
reservation_bool_exp: {
|
|
57211
57527
|
_and: { __type: "[reservation_bool_exp!]" };
|
|
@@ -57244,6 +57560,7 @@ export declare const generatedSchema: {
|
|
|
57244
57560
|
files: { __type: "file_storage_bool_exp" };
|
|
57245
57561
|
files_aggregate: { __type: "file_storage_aggregate_bool_exp" };
|
|
57246
57562
|
generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
|
|
57563
|
+
general_ledger_status: { __type: "activeStatus_enum_comparison_exp" };
|
|
57247
57564
|
guestName: { __type: "String_comparison_exp" };
|
|
57248
57565
|
guests: { __type: "Int_comparison_exp" };
|
|
57249
57566
|
id: { __type: "uuid_comparison_exp" };
|
|
@@ -57254,6 +57571,7 @@ export declare const generatedSchema: {
|
|
|
57254
57571
|
listingConnection: { __type: "listing_connection_bool_exp" };
|
|
57255
57572
|
listingConnectionId: { __type: "uuid_comparison_exp" };
|
|
57256
57573
|
listingId: { __type: "uuid_comparison_exp" };
|
|
57574
|
+
manager_cent_total: { __type: "bigint_comparison_exp" };
|
|
57257
57575
|
matchPaymentCustomerRef: { __type: "String_comparison_exp" };
|
|
57258
57576
|
members: { __type: "tenant_user_bool_exp" };
|
|
57259
57577
|
members_aggregate: { __type: "tenant_user_aggregate_bool_exp" };
|
|
@@ -57265,6 +57583,7 @@ export declare const generatedSchema: {
|
|
|
57265
57583
|
ownerStatementLines_aggregate: {
|
|
57266
57584
|
__type: "owner_statement_line_aggregate_bool_exp";
|
|
57267
57585
|
};
|
|
57586
|
+
owners_cent_total: { __type: "bigint_comparison_exp" };
|
|
57268
57587
|
paidStatus: { __type: "paidStatus_enum_comparison_exp" };
|
|
57269
57588
|
paymentLines: { __type: "payment_line_bool_exp" };
|
|
57270
57589
|
paymentLines_aggregate: { __type: "payment_line_aggregate_bool_exp" };
|
|
@@ -57276,6 +57595,7 @@ export declare const generatedSchema: {
|
|
|
57276
57595
|
settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
57277
57596
|
settingsRight: { __type: "setting_bool_exp" };
|
|
57278
57597
|
settingsRight_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
57598
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
57279
57599
|
similarReservations: { __type: "reservation_bool_exp" };
|
|
57280
57600
|
similarReservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
|
|
57281
57601
|
source: { __type: "source_bool_exp" };
|
|
@@ -57283,6 +57603,7 @@ export declare const generatedSchema: {
|
|
|
57283
57603
|
sources: { __type: "source_bool_exp" };
|
|
57284
57604
|
sources_aggregate: { __type: "source_aggregate_bool_exp" };
|
|
57285
57605
|
status: { __type: "reservation_status_enum_comparison_exp" };
|
|
57606
|
+
tax_cent_total: { __type: "bigint_comparison_exp" };
|
|
57286
57607
|
tenant: { __type: "tenant_bool_exp" };
|
|
57287
57608
|
tenantId: { __type: "uuid_comparison_exp" };
|
|
57288
57609
|
transactionLines: { __type: "transactionLine_bool_exp" };
|
|
@@ -57321,7 +57642,10 @@ export declare const generatedSchema: {
|
|
|
57321
57642
|
centService: { __type: "Int" };
|
|
57322
57643
|
centTotal: { __type: "bigint" };
|
|
57323
57644
|
guests: { __type: "Int" };
|
|
57645
|
+
manager_cent_total: { __type: "bigint" };
|
|
57324
57646
|
nights: { __type: "Int" };
|
|
57647
|
+
owners_cent_total: { __type: "bigint" };
|
|
57648
|
+
tax_cent_total: { __type: "bigint" };
|
|
57325
57649
|
};
|
|
57326
57650
|
reservation_insert_input: {
|
|
57327
57651
|
bookedAt: { __type: "timestamptz" };
|
|
@@ -57353,6 +57677,7 @@ export declare const generatedSchema: {
|
|
|
57353
57677
|
currency: { __type: "currency_enum" };
|
|
57354
57678
|
files: { __type: "file_storage_arr_rel_insert_input" };
|
|
57355
57679
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
57680
|
+
general_ledger_status: { __type: "activeStatus_enum" };
|
|
57356
57681
|
guestName: { __type: "String" };
|
|
57357
57682
|
guests: { __type: "Int" };
|
|
57358
57683
|
id: { __type: "uuid" };
|
|
@@ -57362,6 +57687,7 @@ export declare const generatedSchema: {
|
|
|
57362
57687
|
listingConnection: { __type: "listing_connection_obj_rel_insert_input" };
|
|
57363
57688
|
listingConnectionId: { __type: "uuid" };
|
|
57364
57689
|
listingId: { __type: "uuid" };
|
|
57690
|
+
manager_cent_total: { __type: "bigint" };
|
|
57365
57691
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57366
57692
|
members: { __type: "tenant_user_arr_rel_insert_input" };
|
|
57367
57693
|
metadata: { __type: "jsonb" };
|
|
@@ -57371,6 +57697,7 @@ export declare const generatedSchema: {
|
|
|
57371
57697
|
ownerStatementLines: {
|
|
57372
57698
|
__type: "owner_statement_line_arr_rel_insert_input";
|
|
57373
57699
|
};
|
|
57700
|
+
owners_cent_total: { __type: "bigint" };
|
|
57374
57701
|
paidStatus: { __type: "paidStatus_enum" };
|
|
57375
57702
|
paymentLines: { __type: "payment_line_arr_rel_insert_input" };
|
|
57376
57703
|
paymentMethod: { __type: "String" };
|
|
@@ -57378,11 +57705,13 @@ export declare const generatedSchema: {
|
|
|
57378
57705
|
relatedReservations: { __type: "reservation_arr_rel_insert_input" };
|
|
57379
57706
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
57380
57707
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
57708
|
+
short_ref: { __type: "String" };
|
|
57381
57709
|
similarReservations: { __type: "reservation_arr_rel_insert_input" };
|
|
57382
57710
|
source: { __type: "source_obj_rel_insert_input" };
|
|
57383
57711
|
sourceId: { __type: "uuid" };
|
|
57384
57712
|
sources: { __type: "source_arr_rel_insert_input" };
|
|
57385
57713
|
status: { __type: "reservation_status_enum" };
|
|
57714
|
+
tax_cent_total: { __type: "bigint" };
|
|
57386
57715
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
57387
57716
|
tenantId: { __type: "uuid" };
|
|
57388
57717
|
transactionLines: { __type: "transactionLine_arr_rel_insert_input" };
|
|
@@ -57420,12 +57749,16 @@ export declare const generatedSchema: {
|
|
|
57420
57749
|
id: { __type: "uuid" };
|
|
57421
57750
|
listingConnectionId: { __type: "uuid" };
|
|
57422
57751
|
listingId: { __type: "uuid" };
|
|
57752
|
+
manager_cent_total: { __type: "bigint" };
|
|
57423
57753
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57424
57754
|
nights: { __type: "Int" };
|
|
57425
57755
|
otaReservationId: { __type: "uuid" };
|
|
57756
|
+
owners_cent_total: { __type: "bigint" };
|
|
57426
57757
|
paymentMethod: { __type: "String" };
|
|
57427
57758
|
pmsReferenceCode: { __type: "String" };
|
|
57759
|
+
short_ref: { __type: "String" };
|
|
57428
57760
|
sourceId: { __type: "uuid" };
|
|
57761
|
+
tax_cent_total: { __type: "bigint" };
|
|
57429
57762
|
tenantId: { __type: "uuid" };
|
|
57430
57763
|
uniqueRef: { __type: "String" };
|
|
57431
57764
|
uniqueRef2: { __type: "String" };
|
|
@@ -57459,12 +57792,16 @@ export declare const generatedSchema: {
|
|
|
57459
57792
|
id: { __type: "order_by" };
|
|
57460
57793
|
listingConnectionId: { __type: "order_by" };
|
|
57461
57794
|
listingId: { __type: "order_by" };
|
|
57795
|
+
manager_cent_total: { __type: "order_by" };
|
|
57462
57796
|
matchPaymentCustomerRef: { __type: "order_by" };
|
|
57463
57797
|
nights: { __type: "order_by" };
|
|
57464
57798
|
otaReservationId: { __type: "order_by" };
|
|
57799
|
+
owners_cent_total: { __type: "order_by" };
|
|
57465
57800
|
paymentMethod: { __type: "order_by" };
|
|
57466
57801
|
pmsReferenceCode: { __type: "order_by" };
|
|
57802
|
+
short_ref: { __type: "order_by" };
|
|
57467
57803
|
sourceId: { __type: "order_by" };
|
|
57804
|
+
tax_cent_total: { __type: "order_by" };
|
|
57468
57805
|
tenantId: { __type: "order_by" };
|
|
57469
57806
|
uniqueRef: { __type: "order_by" };
|
|
57470
57807
|
uniqueRef2: { __type: "order_by" };
|
|
@@ -57499,12 +57836,16 @@ export declare const generatedSchema: {
|
|
|
57499
57836
|
id: { __type: "uuid" };
|
|
57500
57837
|
listingConnectionId: { __type: "uuid" };
|
|
57501
57838
|
listingId: { __type: "uuid" };
|
|
57839
|
+
manager_cent_total: { __type: "bigint" };
|
|
57502
57840
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57503
57841
|
nights: { __type: "Int" };
|
|
57504
57842
|
otaReservationId: { __type: "uuid" };
|
|
57843
|
+
owners_cent_total: { __type: "bigint" };
|
|
57505
57844
|
paymentMethod: { __type: "String" };
|
|
57506
57845
|
pmsReferenceCode: { __type: "String" };
|
|
57846
|
+
short_ref: { __type: "String" };
|
|
57507
57847
|
sourceId: { __type: "uuid" };
|
|
57848
|
+
tax_cent_total: { __type: "bigint" };
|
|
57508
57849
|
tenantId: { __type: "uuid" };
|
|
57509
57850
|
uniqueRef: { __type: "String" };
|
|
57510
57851
|
uniqueRef2: { __type: "String" };
|
|
@@ -57538,12 +57879,16 @@ export declare const generatedSchema: {
|
|
|
57538
57879
|
id: { __type: "order_by" };
|
|
57539
57880
|
listingConnectionId: { __type: "order_by" };
|
|
57540
57881
|
listingId: { __type: "order_by" };
|
|
57882
|
+
manager_cent_total: { __type: "order_by" };
|
|
57541
57883
|
matchPaymentCustomerRef: { __type: "order_by" };
|
|
57542
57884
|
nights: { __type: "order_by" };
|
|
57543
57885
|
otaReservationId: { __type: "order_by" };
|
|
57886
|
+
owners_cent_total: { __type: "order_by" };
|
|
57544
57887
|
paymentMethod: { __type: "order_by" };
|
|
57545
57888
|
pmsReferenceCode: { __type: "order_by" };
|
|
57889
|
+
short_ref: { __type: "order_by" };
|
|
57546
57890
|
sourceId: { __type: "order_by" };
|
|
57891
|
+
tax_cent_total: { __type: "order_by" };
|
|
57547
57892
|
tenantId: { __type: "order_by" };
|
|
57548
57893
|
uniqueRef: { __type: "order_by" };
|
|
57549
57894
|
uniqueRef2: { __type: "order_by" };
|
|
@@ -57594,6 +57939,7 @@ export declare const generatedSchema: {
|
|
|
57594
57939
|
currency: { __type: "order_by" };
|
|
57595
57940
|
files_aggregate: { __type: "file_storage_aggregate_order_by" };
|
|
57596
57941
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
57942
|
+
general_ledger_status: { __type: "order_by" };
|
|
57597
57943
|
guestName: { __type: "order_by" };
|
|
57598
57944
|
guests: { __type: "order_by" };
|
|
57599
57945
|
id: { __type: "order_by" };
|
|
@@ -57603,6 +57949,7 @@ export declare const generatedSchema: {
|
|
|
57603
57949
|
listingConnection: { __type: "listing_connection_order_by" };
|
|
57604
57950
|
listingConnectionId: { __type: "order_by" };
|
|
57605
57951
|
listingId: { __type: "order_by" };
|
|
57952
|
+
manager_cent_total: { __type: "order_by" };
|
|
57606
57953
|
matchPaymentCustomerRef: { __type: "order_by" };
|
|
57607
57954
|
members_aggregate: { __type: "tenant_user_aggregate_order_by" };
|
|
57608
57955
|
metadata: { __type: "order_by" };
|
|
@@ -57612,6 +57959,7 @@ export declare const generatedSchema: {
|
|
|
57612
57959
|
ownerStatementLines_aggregate: {
|
|
57613
57960
|
__type: "owner_statement_line_aggregate_order_by";
|
|
57614
57961
|
};
|
|
57962
|
+
owners_cent_total: { __type: "order_by" };
|
|
57615
57963
|
paidStatus: { __type: "order_by" };
|
|
57616
57964
|
paymentLines_aggregate: { __type: "payment_line_aggregate_order_by" };
|
|
57617
57965
|
paymentMethod: { __type: "order_by" };
|
|
@@ -57619,11 +57967,13 @@ export declare const generatedSchema: {
|
|
|
57619
57967
|
relatedReservations_aggregate: { __type: "reservation_aggregate_order_by" };
|
|
57620
57968
|
settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
|
|
57621
57969
|
settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
|
|
57970
|
+
short_ref: { __type: "order_by" };
|
|
57622
57971
|
similarReservations_aggregate: { __type: "reservation_aggregate_order_by" };
|
|
57623
57972
|
source: { __type: "source_order_by" };
|
|
57624
57973
|
sourceId: { __type: "order_by" };
|
|
57625
57974
|
sources_aggregate: { __type: "source_aggregate_order_by" };
|
|
57626
57975
|
status: { __type: "order_by" };
|
|
57976
|
+
tax_cent_total: { __type: "order_by" };
|
|
57627
57977
|
tenant: { __type: "tenant_order_by" };
|
|
57628
57978
|
tenantId: { __type: "order_by" };
|
|
57629
57979
|
transactionLines_aggregate: {
|
|
@@ -57663,21 +58013,26 @@ export declare const generatedSchema: {
|
|
|
57663
58013
|
createdAt: { __type: "timestamptz" };
|
|
57664
58014
|
currency: { __type: "currency_enum" };
|
|
57665
58015
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
58016
|
+
general_ledger_status: { __type: "activeStatus_enum" };
|
|
57666
58017
|
guestName: { __type: "String" };
|
|
57667
58018
|
guests: { __type: "Int" };
|
|
57668
58019
|
id: { __type: "uuid" };
|
|
57669
58020
|
lineMap: { __type: "jsonb" };
|
|
57670
58021
|
listingConnectionId: { __type: "uuid" };
|
|
57671
58022
|
listingId: { __type: "uuid" };
|
|
58023
|
+
manager_cent_total: { __type: "bigint" };
|
|
57672
58024
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57673
58025
|
metadata: { __type: "jsonb" };
|
|
57674
58026
|
nights: { __type: "Int" };
|
|
57675
58027
|
otaReservationId: { __type: "uuid" };
|
|
58028
|
+
owners_cent_total: { __type: "bigint" };
|
|
57676
58029
|
paidStatus: { __type: "paidStatus_enum" };
|
|
57677
58030
|
paymentMethod: { __type: "String" };
|
|
57678
58031
|
pmsReferenceCode: { __type: "String" };
|
|
58032
|
+
short_ref: { __type: "String" };
|
|
57679
58033
|
sourceId: { __type: "uuid" };
|
|
57680
58034
|
status: { __type: "reservation_status_enum" };
|
|
58035
|
+
tax_cent_total: { __type: "bigint" };
|
|
57681
58036
|
tenantId: { __type: "uuid" };
|
|
57682
58037
|
uniqueRef: { __type: "String" };
|
|
57683
58038
|
uniqueRef2: { __type: "String" };
|
|
@@ -57762,7 +58117,10 @@ export declare const generatedSchema: {
|
|
|
57762
58117
|
centService: { __type: "Float" };
|
|
57763
58118
|
centTotal: { __type: "Float" };
|
|
57764
58119
|
guests: { __type: "Float" };
|
|
58120
|
+
manager_cent_total: { __type: "Float" };
|
|
57765
58121
|
nights: { __type: "Float" };
|
|
58122
|
+
owners_cent_total: { __type: "Float" };
|
|
58123
|
+
tax_cent_total: { __type: "Float" };
|
|
57766
58124
|
};
|
|
57767
58125
|
reservation_stddev_order_by: {
|
|
57768
58126
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57776,7 +58134,10 @@ export declare const generatedSchema: {
|
|
|
57776
58134
|
centService: { __type: "order_by" };
|
|
57777
58135
|
centTotal: { __type: "order_by" };
|
|
57778
58136
|
guests: { __type: "order_by" };
|
|
58137
|
+
manager_cent_total: { __type: "order_by" };
|
|
57779
58138
|
nights: { __type: "order_by" };
|
|
58139
|
+
owners_cent_total: { __type: "order_by" };
|
|
58140
|
+
tax_cent_total: { __type: "order_by" };
|
|
57780
58141
|
};
|
|
57781
58142
|
reservation_stddev_pop_fields: {
|
|
57782
58143
|
__typename: { __type: "String!" };
|
|
@@ -57791,7 +58152,10 @@ export declare const generatedSchema: {
|
|
|
57791
58152
|
centService: { __type: "Float" };
|
|
57792
58153
|
centTotal: { __type: "Float" };
|
|
57793
58154
|
guests: { __type: "Float" };
|
|
58155
|
+
manager_cent_total: { __type: "Float" };
|
|
57794
58156
|
nights: { __type: "Float" };
|
|
58157
|
+
owners_cent_total: { __type: "Float" };
|
|
58158
|
+
tax_cent_total: { __type: "Float" };
|
|
57795
58159
|
};
|
|
57796
58160
|
reservation_stddev_pop_order_by: {
|
|
57797
58161
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57805,7 +58169,10 @@ export declare const generatedSchema: {
|
|
|
57805
58169
|
centService: { __type: "order_by" };
|
|
57806
58170
|
centTotal: { __type: "order_by" };
|
|
57807
58171
|
guests: { __type: "order_by" };
|
|
58172
|
+
manager_cent_total: { __type: "order_by" };
|
|
57808
58173
|
nights: { __type: "order_by" };
|
|
58174
|
+
owners_cent_total: { __type: "order_by" };
|
|
58175
|
+
tax_cent_total: { __type: "order_by" };
|
|
57809
58176
|
};
|
|
57810
58177
|
reservation_stddev_samp_fields: {
|
|
57811
58178
|
__typename: { __type: "String!" };
|
|
@@ -57820,7 +58187,10 @@ export declare const generatedSchema: {
|
|
|
57820
58187
|
centService: { __type: "Float" };
|
|
57821
58188
|
centTotal: { __type: "Float" };
|
|
57822
58189
|
guests: { __type: "Float" };
|
|
58190
|
+
manager_cent_total: { __type: "Float" };
|
|
57823
58191
|
nights: { __type: "Float" };
|
|
58192
|
+
owners_cent_total: { __type: "Float" };
|
|
58193
|
+
tax_cent_total: { __type: "Float" };
|
|
57824
58194
|
};
|
|
57825
58195
|
reservation_stddev_samp_order_by: {
|
|
57826
58196
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57834,7 +58204,10 @@ export declare const generatedSchema: {
|
|
|
57834
58204
|
centService: { __type: "order_by" };
|
|
57835
58205
|
centTotal: { __type: "order_by" };
|
|
57836
58206
|
guests: { __type: "order_by" };
|
|
58207
|
+
manager_cent_total: { __type: "order_by" };
|
|
57837
58208
|
nights: { __type: "order_by" };
|
|
58209
|
+
owners_cent_total: { __type: "order_by" };
|
|
58210
|
+
tax_cent_total: { __type: "order_by" };
|
|
57838
58211
|
};
|
|
57839
58212
|
reservation_stream_cursor_input: {
|
|
57840
58213
|
initial_value: { __type: "reservation_stream_cursor_value_input!" };
|
|
@@ -57864,21 +58237,26 @@ export declare const generatedSchema: {
|
|
|
57864
58237
|
createdAt: { __type: "timestamptz" };
|
|
57865
58238
|
currency: { __type: "currency_enum" };
|
|
57866
58239
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
58240
|
+
general_ledger_status: { __type: "activeStatus_enum" };
|
|
57867
58241
|
guestName: { __type: "String" };
|
|
57868
58242
|
guests: { __type: "Int" };
|
|
57869
58243
|
id: { __type: "uuid" };
|
|
57870
58244
|
lineMap: { __type: "jsonb" };
|
|
57871
58245
|
listingConnectionId: { __type: "uuid" };
|
|
57872
58246
|
listingId: { __type: "uuid" };
|
|
58247
|
+
manager_cent_total: { __type: "bigint" };
|
|
57873
58248
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57874
58249
|
metadata: { __type: "jsonb" };
|
|
57875
58250
|
nights: { __type: "Int" };
|
|
57876
58251
|
otaReservationId: { __type: "uuid" };
|
|
58252
|
+
owners_cent_total: { __type: "bigint" };
|
|
57877
58253
|
paidStatus: { __type: "paidStatus_enum" };
|
|
57878
58254
|
paymentMethod: { __type: "String" };
|
|
57879
58255
|
pmsReferenceCode: { __type: "String" };
|
|
58256
|
+
short_ref: { __type: "String" };
|
|
57880
58257
|
sourceId: { __type: "uuid" };
|
|
57881
58258
|
status: { __type: "reservation_status_enum" };
|
|
58259
|
+
tax_cent_total: { __type: "bigint" };
|
|
57882
58260
|
tenantId: { __type: "uuid" };
|
|
57883
58261
|
uniqueRef: { __type: "String" };
|
|
57884
58262
|
uniqueRef2: { __type: "String" };
|
|
@@ -57898,7 +58276,10 @@ export declare const generatedSchema: {
|
|
|
57898
58276
|
centService: { __type: "Int" };
|
|
57899
58277
|
centTotal: { __type: "bigint" };
|
|
57900
58278
|
guests: { __type: "Int" };
|
|
58279
|
+
manager_cent_total: { __type: "bigint" };
|
|
57901
58280
|
nights: { __type: "Int" };
|
|
58281
|
+
owners_cent_total: { __type: "bigint" };
|
|
58282
|
+
tax_cent_total: { __type: "bigint" };
|
|
57902
58283
|
};
|
|
57903
58284
|
reservation_sum_order_by: {
|
|
57904
58285
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57912,7 +58293,10 @@ export declare const generatedSchema: {
|
|
|
57912
58293
|
centService: { __type: "order_by" };
|
|
57913
58294
|
centTotal: { __type: "order_by" };
|
|
57914
58295
|
guests: { __type: "order_by" };
|
|
58296
|
+
manager_cent_total: { __type: "order_by" };
|
|
57915
58297
|
nights: { __type: "order_by" };
|
|
58298
|
+
owners_cent_total: { __type: "order_by" };
|
|
58299
|
+
tax_cent_total: { __type: "order_by" };
|
|
57916
58300
|
};
|
|
57917
58301
|
reservation_updates: {
|
|
57918
58302
|
_append: { __type: "reservation_append_input" };
|
|
@@ -57937,7 +58321,10 @@ export declare const generatedSchema: {
|
|
|
57937
58321
|
centService: { __type: "Float" };
|
|
57938
58322
|
centTotal: { __type: "Float" };
|
|
57939
58323
|
guests: { __type: "Float" };
|
|
58324
|
+
manager_cent_total: { __type: "Float" };
|
|
57940
58325
|
nights: { __type: "Float" };
|
|
58326
|
+
owners_cent_total: { __type: "Float" };
|
|
58327
|
+
tax_cent_total: { __type: "Float" };
|
|
57941
58328
|
};
|
|
57942
58329
|
reservation_var_pop_order_by: {
|
|
57943
58330
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57951,7 +58338,10 @@ export declare const generatedSchema: {
|
|
|
57951
58338
|
centService: { __type: "order_by" };
|
|
57952
58339
|
centTotal: { __type: "order_by" };
|
|
57953
58340
|
guests: { __type: "order_by" };
|
|
58341
|
+
manager_cent_total: { __type: "order_by" };
|
|
57954
58342
|
nights: { __type: "order_by" };
|
|
58343
|
+
owners_cent_total: { __type: "order_by" };
|
|
58344
|
+
tax_cent_total: { __type: "order_by" };
|
|
57955
58345
|
};
|
|
57956
58346
|
reservation_var_samp_fields: {
|
|
57957
58347
|
__typename: { __type: "String!" };
|
|
@@ -57966,7 +58356,10 @@ export declare const generatedSchema: {
|
|
|
57966
58356
|
centService: { __type: "Float" };
|
|
57967
58357
|
centTotal: { __type: "Float" };
|
|
57968
58358
|
guests: { __type: "Float" };
|
|
58359
|
+
manager_cent_total: { __type: "Float" };
|
|
57969
58360
|
nights: { __type: "Float" };
|
|
58361
|
+
owners_cent_total: { __type: "Float" };
|
|
58362
|
+
tax_cent_total: { __type: "Float" };
|
|
57970
58363
|
};
|
|
57971
58364
|
reservation_var_samp_order_by: {
|
|
57972
58365
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57980,7 +58373,10 @@ export declare const generatedSchema: {
|
|
|
57980
58373
|
centService: { __type: "order_by" };
|
|
57981
58374
|
centTotal: { __type: "order_by" };
|
|
57982
58375
|
guests: { __type: "order_by" };
|
|
58376
|
+
manager_cent_total: { __type: "order_by" };
|
|
57983
58377
|
nights: { __type: "order_by" };
|
|
58378
|
+
owners_cent_total: { __type: "order_by" };
|
|
58379
|
+
tax_cent_total: { __type: "order_by" };
|
|
57984
58380
|
};
|
|
57985
58381
|
reservation_variance_fields: {
|
|
57986
58382
|
__typename: { __type: "String!" };
|
|
@@ -57995,7 +58391,10 @@ export declare const generatedSchema: {
|
|
|
57995
58391
|
centService: { __type: "Float" };
|
|
57996
58392
|
centTotal: { __type: "Float" };
|
|
57997
58393
|
guests: { __type: "Float" };
|
|
58394
|
+
manager_cent_total: { __type: "Float" };
|
|
57998
58395
|
nights: { __type: "Float" };
|
|
58396
|
+
owners_cent_total: { __type: "Float" };
|
|
58397
|
+
tax_cent_total: { __type: "Float" };
|
|
57999
58398
|
};
|
|
58000
58399
|
reservation_variance_order_by: {
|
|
58001
58400
|
centAccommodation: { __type: "order_by" };
|
|
@@ -58009,7 +58408,10 @@ export declare const generatedSchema: {
|
|
|
58009
58408
|
centService: { __type: "order_by" };
|
|
58010
58409
|
centTotal: { __type: "order_by" };
|
|
58011
58410
|
guests: { __type: "order_by" };
|
|
58411
|
+
manager_cent_total: { __type: "order_by" };
|
|
58012
58412
|
nights: { __type: "order_by" };
|
|
58413
|
+
owners_cent_total: { __type: "order_by" };
|
|
58414
|
+
tax_cent_total: { __type: "order_by" };
|
|
58013
58415
|
};
|
|
58014
58416
|
setting: {
|
|
58015
58417
|
__typename: { __type: "String!" };
|
|
@@ -65711,6 +66113,7 @@ export declare const generatedSchema: {
|
|
|
65711
66113
|
where: "owner_statement_bool_exp";
|
|
65712
66114
|
};
|
|
65713
66115
|
};
|
|
66116
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
65714
66117
|
owners: {
|
|
65715
66118
|
__type: "[owner!]!";
|
|
65716
66119
|
__args: {
|
|
@@ -65823,6 +66226,7 @@ export declare const generatedSchema: {
|
|
|
65823
66226
|
where: "setting_bool_exp";
|
|
65824
66227
|
};
|
|
65825
66228
|
};
|
|
66229
|
+
settingsData: { __type: "jsonb"; __args: { path: "String" } };
|
|
65826
66230
|
settings_aggregate: {
|
|
65827
66231
|
__type: "setting_aggregate!";
|
|
65828
66232
|
__args: {
|
|
@@ -66055,6 +66459,7 @@ export declare const generatedSchema: {
|
|
|
66055
66459
|
tenant_append_input: {
|
|
66056
66460
|
billingAddressData: { __type: "jsonb" };
|
|
66057
66461
|
featureFlags: { __type: "jsonb" };
|
|
66462
|
+
settingsData: { __type: "jsonb" };
|
|
66058
66463
|
setup: { __type: "jsonb" };
|
|
66059
66464
|
statementAddressData: { __type: "jsonb" };
|
|
66060
66465
|
};
|
|
@@ -66153,6 +66558,7 @@ export declare const generatedSchema: {
|
|
|
66153
66558
|
name: { __type: "String_comparison_exp" };
|
|
66154
66559
|
ownerStatements: { __type: "owner_statement_bool_exp" };
|
|
66155
66560
|
ownerStatements_aggregate: { __type: "owner_statement_aggregate_bool_exp" };
|
|
66561
|
+
owner_portal_show_draft_statements: { __type: "Boolean_comparison_exp" };
|
|
66156
66562
|
owners: { __type: "owner_bool_exp" };
|
|
66157
66563
|
owners_aggregate: { __type: "owner_aggregate_bool_exp" };
|
|
66158
66564
|
partner: { __type: "tenant_bool_exp" };
|
|
@@ -66166,6 +66572,7 @@ export declare const generatedSchema: {
|
|
|
66166
66572
|
reservations: { __type: "reservation_bool_exp" };
|
|
66167
66573
|
reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
|
|
66168
66574
|
settings: { __type: "setting_bool_exp" };
|
|
66575
|
+
settingsData: { __type: "jsonb_comparison_exp" };
|
|
66169
66576
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
66170
66577
|
setup: { __type: "jsonb_comparison_exp" };
|
|
66171
66578
|
setupCompleted: { __type: "Boolean_comparison_exp" };
|
|
@@ -66203,18 +66610,21 @@ export declare const generatedSchema: {
|
|
|
66203
66610
|
tenant_delete_at_path_input: {
|
|
66204
66611
|
billingAddressData: { __type: "[String!]" };
|
|
66205
66612
|
featureFlags: { __type: "[String!]" };
|
|
66613
|
+
settingsData: { __type: "[String!]" };
|
|
66206
66614
|
setup: { __type: "[String!]" };
|
|
66207
66615
|
statementAddressData: { __type: "[String!]" };
|
|
66208
66616
|
};
|
|
66209
66617
|
tenant_delete_elem_input: {
|
|
66210
66618
|
billingAddressData: { __type: "Int" };
|
|
66211
66619
|
featureFlags: { __type: "Int" };
|
|
66620
|
+
settingsData: { __type: "Int" };
|
|
66212
66621
|
setup: { __type: "Int" };
|
|
66213
66622
|
statementAddressData: { __type: "Int" };
|
|
66214
66623
|
};
|
|
66215
66624
|
tenant_delete_key_input: {
|
|
66216
66625
|
billingAddressData: { __type: "String" };
|
|
66217
66626
|
featureFlags: { __type: "String" };
|
|
66627
|
+
settingsData: { __type: "String" };
|
|
66218
66628
|
setup: { __type: "String" };
|
|
66219
66629
|
statementAddressData: { __type: "String" };
|
|
66220
66630
|
};
|
|
@@ -66275,6 +66685,7 @@ export declare const generatedSchema: {
|
|
|
66275
66685
|
monitorConnections: { __type: "monitorConnection_arr_rel_insert_input" };
|
|
66276
66686
|
name: { __type: "String" };
|
|
66277
66687
|
ownerStatements: { __type: "owner_statement_arr_rel_insert_input" };
|
|
66688
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
66278
66689
|
owners: { __type: "owner_arr_rel_insert_input" };
|
|
66279
66690
|
partner: { __type: "tenant_obj_rel_insert_input" };
|
|
66280
66691
|
partnerId: { __type: "uuid" };
|
|
@@ -66283,6 +66694,7 @@ export declare const generatedSchema: {
|
|
|
66283
66694
|
rates: { __type: "rate_arr_rel_insert_input" };
|
|
66284
66695
|
reservations: { __type: "reservation_arr_rel_insert_input" };
|
|
66285
66696
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
66697
|
+
settingsData: { __type: "jsonb" };
|
|
66286
66698
|
setup: { __type: "jsonb" };
|
|
66287
66699
|
setupCompleted: { __type: "Boolean" };
|
|
66288
66700
|
sources: { __type: "source_arr_rel_insert_input" };
|
|
@@ -66550,6 +66962,7 @@ export declare const generatedSchema: {
|
|
|
66550
66962
|
};
|
|
66551
66963
|
name: { __type: "order_by" };
|
|
66552
66964
|
ownerStatements_aggregate: { __type: "owner_statement_aggregate_order_by" };
|
|
66965
|
+
owner_portal_show_draft_statements: { __type: "order_by" };
|
|
66553
66966
|
owners_aggregate: { __type: "owner_aggregate_order_by" };
|
|
66554
66967
|
partner: { __type: "tenant_order_by" };
|
|
66555
66968
|
partnerId: { __type: "order_by" };
|
|
@@ -66557,6 +66970,7 @@ export declare const generatedSchema: {
|
|
|
66557
66970
|
paymentLines_aggregate: { __type: "payment_line_aggregate_order_by" };
|
|
66558
66971
|
rates_aggregate: { __type: "rate_aggregate_order_by" };
|
|
66559
66972
|
reservations_aggregate: { __type: "reservation_aggregate_order_by" };
|
|
66973
|
+
settingsData: { __type: "order_by" };
|
|
66560
66974
|
settings_aggregate: { __type: "setting_aggregate_order_by" };
|
|
66561
66975
|
setup: { __type: "order_by" };
|
|
66562
66976
|
setupCompleted: { __type: "order_by" };
|
|
@@ -66588,6 +67002,7 @@ export declare const generatedSchema: {
|
|
|
66588
67002
|
tenant_prepend_input: {
|
|
66589
67003
|
billingAddressData: { __type: "jsonb" };
|
|
66590
67004
|
featureFlags: { __type: "jsonb" };
|
|
67005
|
+
settingsData: { __type: "jsonb" };
|
|
66591
67006
|
setup: { __type: "jsonb" };
|
|
66592
67007
|
statementAddressData: { __type: "jsonb" };
|
|
66593
67008
|
};
|
|
@@ -66626,7 +67041,9 @@ export declare const generatedSchema: {
|
|
|
66626
67041
|
logo: { __type: "String" };
|
|
66627
67042
|
longTermStayNights: { __type: "Int" };
|
|
66628
67043
|
name: { __type: "String" };
|
|
67044
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
66629
67045
|
partnerId: { __type: "uuid" };
|
|
67046
|
+
settingsData: { __type: "jsonb" };
|
|
66630
67047
|
setup: { __type: "jsonb" };
|
|
66631
67048
|
setupCompleted: { __type: "Boolean" };
|
|
66632
67049
|
statementAddressData: { __type: "jsonb" };
|
|
@@ -66712,7 +67129,9 @@ export declare const generatedSchema: {
|
|
|
66712
67129
|
logo: { __type: "String" };
|
|
66713
67130
|
longTermStayNights: { __type: "Int" };
|
|
66714
67131
|
name: { __type: "String" };
|
|
67132
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
66715
67133
|
partnerId: { __type: "uuid" };
|
|
67134
|
+
settingsData: { __type: "jsonb" };
|
|
66716
67135
|
setup: { __type: "jsonb" };
|
|
66717
67136
|
setupCompleted: { __type: "Boolean" };
|
|
66718
67137
|
statementAddressData: { __type: "jsonb" };
|
|
@@ -68222,7 +68641,9 @@ export declare const generatedSchema: {
|
|
|
68222
68641
|
};
|
|
68223
68642
|
matchBankAccountLast4: { __type: "String" };
|
|
68224
68643
|
matchStatus: { __type: "String" };
|
|
68225
|
-
|
|
68644
|
+
match_line_type_classification: { __type: "String" };
|
|
68645
|
+
match_reservation_confirmation_code: { __type: "String" };
|
|
68646
|
+
match_reservation_stripe_guest_ref: { __type: "String" };
|
|
68226
68647
|
paidAt: { __type: "timestamptz" };
|
|
68227
68648
|
paidStatus: { __type: "paidStatus_enum" };
|
|
68228
68649
|
recurringFeeId: { __type: "uuid" };
|
|
@@ -68249,6 +68670,7 @@ export declare const generatedSchema: {
|
|
|
68249
68670
|
where: "transaction_bool_exp";
|
|
68250
68671
|
};
|
|
68251
68672
|
};
|
|
68673
|
+
short_ref: { __type: "String" };
|
|
68252
68674
|
source: { __type: "source" };
|
|
68253
68675
|
sourceId: { __type: "uuid" };
|
|
68254
68676
|
status: { __type: "activeStatus_enum!" };
|
|
@@ -68263,6 +68685,8 @@ export declare const generatedSchema: {
|
|
|
68263
68685
|
account: { __type: "account" };
|
|
68264
68686
|
accountAssignmentType: { __type: "accountAssignmentType_enum" };
|
|
68265
68687
|
accountId: { __type: "uuid" };
|
|
68688
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum" };
|
|
68689
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68266
68690
|
centTotal: { __type: "Int!" };
|
|
68267
68691
|
contact: { __type: "contact" };
|
|
68268
68692
|
contactId: { __type: "uuid" };
|
|
@@ -68299,7 +68723,6 @@ export declare const generatedSchema: {
|
|
|
68299
68723
|
matchReservationConfirmationCode: { __type: "String" };
|
|
68300
68724
|
matchReservationStripeGuestRef: { __type: "String" };
|
|
68301
68725
|
matchStatus: { __type: "String" };
|
|
68302
|
-
matchers: { __type: "jsonb"; __args: { path: "String" } };
|
|
68303
68726
|
ownerStatement: { __type: "owner_statement" };
|
|
68304
68727
|
ownerStatementId: { __type: "uuid" };
|
|
68305
68728
|
party: { __type: "party_enum" };
|
|
@@ -68360,7 +68783,6 @@ export declare const generatedSchema: {
|
|
|
68360
68783
|
var_samp: { __type: "transactionLine_var_samp_order_by" };
|
|
68361
68784
|
variance: { __type: "transactionLine_variance_order_by" };
|
|
68362
68785
|
};
|
|
68363
|
-
transactionLine_append_input: { matchers: { __type: "jsonb" } };
|
|
68364
68786
|
transactionLine_arr_rel_insert_input: {
|
|
68365
68787
|
data: { __type: "[transactionLine_insert_input!]!" };
|
|
68366
68788
|
on_conflict: { __type: "transactionLine_on_conflict" };
|
|
@@ -68383,6 +68805,8 @@ export declare const generatedSchema: {
|
|
|
68383
68805
|
__type: "accountAssignmentType_enum_comparison_exp";
|
|
68384
68806
|
};
|
|
68385
68807
|
accountId: { __type: "uuid_comparison_exp" };
|
|
68808
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum_comparison_exp" };
|
|
68809
|
+
applied_amount_tax_rate_id: { __type: "uuid_comparison_exp" };
|
|
68386
68810
|
centTotal: { __type: "Int_comparison_exp" };
|
|
68387
68811
|
contact: { __type: "contact_bool_exp" };
|
|
68388
68812
|
contactId: { __type: "uuid_comparison_exp" };
|
|
@@ -68401,7 +68825,6 @@ export declare const generatedSchema: {
|
|
|
68401
68825
|
matchReservationConfirmationCode: { __type: "String_comparison_exp" };
|
|
68402
68826
|
matchReservationStripeGuestRef: { __type: "String_comparison_exp" };
|
|
68403
68827
|
matchStatus: { __type: "String_comparison_exp" };
|
|
68404
|
-
matchers: { __type: "jsonb_comparison_exp" };
|
|
68405
68828
|
ownerStatement: { __type: "owner_statement_bool_exp" };
|
|
68406
68829
|
ownerStatementId: { __type: "uuid_comparison_exp" };
|
|
68407
68830
|
party: { __type: "party_enum_comparison_exp" };
|
|
@@ -68417,9 +68840,6 @@ export declare const generatedSchema: {
|
|
|
68417
68840
|
uniqueRef: { __type: "String_comparison_exp" };
|
|
68418
68841
|
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
68419
68842
|
};
|
|
68420
|
-
transactionLine_delete_at_path_input: { matchers: { __type: "[String!]" } };
|
|
68421
|
-
transactionLine_delete_elem_input: { matchers: { __type: "Int" } };
|
|
68422
|
-
transactionLine_delete_key_input: { matchers: { __type: "String" } };
|
|
68423
68843
|
transactionLine_inc_input: {
|
|
68424
68844
|
centTotal: { __type: "Int" };
|
|
68425
68845
|
markupCentTotal: { __type: "Int" };
|
|
@@ -68428,6 +68848,8 @@ export declare const generatedSchema: {
|
|
|
68428
68848
|
account: { __type: "account_obj_rel_insert_input" };
|
|
68429
68849
|
accountAssignmentType: { __type: "accountAssignmentType_enum" };
|
|
68430
68850
|
accountId: { __type: "uuid" };
|
|
68851
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum" };
|
|
68852
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68431
68853
|
centTotal: { __type: "Int" };
|
|
68432
68854
|
contact: { __type: "contact_obj_rel_insert_input" };
|
|
68433
68855
|
contactId: { __type: "uuid" };
|
|
@@ -68444,7 +68866,6 @@ export declare const generatedSchema: {
|
|
|
68444
68866
|
matchLineTypeClassification: { __type: "String" };
|
|
68445
68867
|
matchReservationConfirmationCode: { __type: "String" };
|
|
68446
68868
|
matchReservationStripeGuestRef: { __type: "String" };
|
|
68447
|
-
matchers: { __type: "jsonb" };
|
|
68448
68869
|
ownerStatement: { __type: "owner_statement_obj_rel_insert_input" };
|
|
68449
68870
|
ownerStatementId: { __type: "uuid" };
|
|
68450
68871
|
party: { __type: "party_enum" };
|
|
@@ -68463,6 +68884,7 @@ export declare const generatedSchema: {
|
|
|
68463
68884
|
transactionLine_max_fields: {
|
|
68464
68885
|
__typename: { __type: "String!" };
|
|
68465
68886
|
accountId: { __type: "uuid" };
|
|
68887
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68466
68888
|
centTotal: { __type: "Int" };
|
|
68467
68889
|
contactId: { __type: "uuid" };
|
|
68468
68890
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68484,6 +68906,7 @@ export declare const generatedSchema: {
|
|
|
68484
68906
|
};
|
|
68485
68907
|
transactionLine_max_order_by: {
|
|
68486
68908
|
accountId: { __type: "order_by" };
|
|
68909
|
+
applied_amount_tax_rate_id: { __type: "order_by" };
|
|
68487
68910
|
centTotal: { __type: "order_by" };
|
|
68488
68911
|
contactId: { __type: "order_by" };
|
|
68489
68912
|
createdAt: { __type: "order_by" };
|
|
@@ -68506,6 +68929,7 @@ export declare const generatedSchema: {
|
|
|
68506
68929
|
transactionLine_min_fields: {
|
|
68507
68930
|
__typename: { __type: "String!" };
|
|
68508
68931
|
accountId: { __type: "uuid" };
|
|
68932
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68509
68933
|
centTotal: { __type: "Int" };
|
|
68510
68934
|
contactId: { __type: "uuid" };
|
|
68511
68935
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68527,6 +68951,7 @@ export declare const generatedSchema: {
|
|
|
68527
68951
|
};
|
|
68528
68952
|
transactionLine_min_order_by: {
|
|
68529
68953
|
accountId: { __type: "order_by" };
|
|
68954
|
+
applied_amount_tax_rate_id: { __type: "order_by" };
|
|
68530
68955
|
centTotal: { __type: "order_by" };
|
|
68531
68956
|
contactId: { __type: "order_by" };
|
|
68532
68957
|
createdAt: { __type: "order_by" };
|
|
@@ -68564,6 +68989,8 @@ export declare const generatedSchema: {
|
|
|
68564
68989
|
account: { __type: "account_order_by" };
|
|
68565
68990
|
accountAssignmentType: { __type: "order_by" };
|
|
68566
68991
|
accountId: { __type: "order_by" };
|
|
68992
|
+
applied_amount_tax_behavior: { __type: "order_by" };
|
|
68993
|
+
applied_amount_tax_rate_id: { __type: "order_by" };
|
|
68567
68994
|
centTotal: { __type: "order_by" };
|
|
68568
68995
|
contact: { __type: "contact_order_by" };
|
|
68569
68996
|
contactId: { __type: "order_by" };
|
|
@@ -68581,7 +69008,6 @@ export declare const generatedSchema: {
|
|
|
68581
69008
|
matchReservationConfirmationCode: { __type: "order_by" };
|
|
68582
69009
|
matchReservationStripeGuestRef: { __type: "order_by" };
|
|
68583
69010
|
matchStatus: { __type: "order_by" };
|
|
68584
|
-
matchers: { __type: "order_by" };
|
|
68585
69011
|
ownerStatement: { __type: "owner_statement_order_by" };
|
|
68586
69012
|
ownerStatementId: { __type: "order_by" };
|
|
68587
69013
|
party: { __type: "order_by" };
|
|
@@ -68598,10 +69024,11 @@ export declare const generatedSchema: {
|
|
|
68598
69024
|
updatedAt: { __type: "order_by" };
|
|
68599
69025
|
};
|
|
68600
69026
|
transactionLine_pk_columns_input: { id: { __type: "uuid!" } };
|
|
68601
|
-
transactionLine_prepend_input: { matchers: { __type: "jsonb" } };
|
|
68602
69027
|
transactionLine_set_input: {
|
|
68603
69028
|
accountAssignmentType: { __type: "accountAssignmentType_enum" };
|
|
68604
69029
|
accountId: { __type: "uuid" };
|
|
69030
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum" };
|
|
69031
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68605
69032
|
centTotal: { __type: "Int" };
|
|
68606
69033
|
contactId: { __type: "uuid" };
|
|
68607
69034
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68614,7 +69041,6 @@ export declare const generatedSchema: {
|
|
|
68614
69041
|
matchLineTypeClassification: { __type: "String" };
|
|
68615
69042
|
matchReservationConfirmationCode: { __type: "String" };
|
|
68616
69043
|
matchReservationStripeGuestRef: { __type: "String" };
|
|
68617
|
-
matchers: { __type: "jsonb" };
|
|
68618
69044
|
ownerStatementId: { __type: "uuid" };
|
|
68619
69045
|
party: { __type: "party_enum" };
|
|
68620
69046
|
reservationId: { __type: "uuid" };
|
|
@@ -68657,6 +69083,8 @@ export declare const generatedSchema: {
|
|
|
68657
69083
|
transactionLine_stream_cursor_value_input: {
|
|
68658
69084
|
accountAssignmentType: { __type: "accountAssignmentType_enum" };
|
|
68659
69085
|
accountId: { __type: "uuid" };
|
|
69086
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum" };
|
|
69087
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68660
69088
|
centTotal: { __type: "Int" };
|
|
68661
69089
|
contactId: { __type: "uuid" };
|
|
68662
69090
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68670,7 +69098,6 @@ export declare const generatedSchema: {
|
|
|
68670
69098
|
matchReservationConfirmationCode: { __type: "String" };
|
|
68671
69099
|
matchReservationStripeGuestRef: { __type: "String" };
|
|
68672
69100
|
matchStatus: { __type: "String" };
|
|
68673
|
-
matchers: { __type: "jsonb" };
|
|
68674
69101
|
ownerStatementId: { __type: "uuid" };
|
|
68675
69102
|
party: { __type: "party_enum" };
|
|
68676
69103
|
reservationId: { __type: "uuid" };
|
|
@@ -68689,12 +69116,7 @@ export declare const generatedSchema: {
|
|
|
68689
69116
|
markupCentTotal: { __type: "order_by" };
|
|
68690
69117
|
};
|
|
68691
69118
|
transactionLine_updates: {
|
|
68692
|
-
_append: { __type: "transactionLine_append_input" };
|
|
68693
|
-
_delete_at_path: { __type: "transactionLine_delete_at_path_input" };
|
|
68694
|
-
_delete_elem: { __type: "transactionLine_delete_elem_input" };
|
|
68695
|
-
_delete_key: { __type: "transactionLine_delete_key_input" };
|
|
68696
69119
|
_inc: { __type: "transactionLine_inc_input" };
|
|
68697
|
-
_prepend: { __type: "transactionLine_prepend_input" };
|
|
68698
69120
|
_set: { __type: "transactionLine_set_input" };
|
|
68699
69121
|
where: { __type: "transactionLine_bool_exp!" };
|
|
68700
69122
|
};
|
|
@@ -68834,10 +69256,7 @@ export declare const generatedSchema: {
|
|
|
68834
69256
|
var_samp: { __type: "transaction_var_samp_order_by" };
|
|
68835
69257
|
variance: { __type: "transaction_variance_order_by" };
|
|
68836
69258
|
};
|
|
68837
|
-
transaction_append_input: {
|
|
68838
|
-
matchers: { __type: "jsonb" };
|
|
68839
|
-
recurringPattern: { __type: "jsonb" };
|
|
68840
|
-
};
|
|
69259
|
+
transaction_append_input: { recurringPattern: { __type: "jsonb" } };
|
|
68841
69260
|
transaction_arr_rel_insert_input: {
|
|
68842
69261
|
data: { __type: "[transaction_insert_input!]!" };
|
|
68843
69262
|
on_conflict: { __type: "transaction_on_conflict" };
|
|
@@ -68875,7 +69294,9 @@ export declare const generatedSchema: {
|
|
|
68875
69294
|
lines_aggregate: { __type: "transactionLine_aggregate_bool_exp" };
|
|
68876
69295
|
matchBankAccountLast4: { __type: "String_comparison_exp" };
|
|
68877
69296
|
matchStatus: { __type: "String_comparison_exp" };
|
|
68878
|
-
|
|
69297
|
+
match_line_type_classification: { __type: "String_comparison_exp" };
|
|
69298
|
+
match_reservation_confirmation_code: { __type: "String_comparison_exp" };
|
|
69299
|
+
match_reservation_stripe_guest_ref: { __type: "String_comparison_exp" };
|
|
68879
69300
|
paidAt: { __type: "timestamptz_comparison_exp" };
|
|
68880
69301
|
paidStatus: { __type: "paidStatus_enum_comparison_exp" };
|
|
68881
69302
|
recurringFeeId: { __type: "uuid_comparison_exp" };
|
|
@@ -68886,6 +69307,7 @@ export declare const generatedSchema: {
|
|
|
68886
69307
|
recurringTemplateInstances_aggregate: {
|
|
68887
69308
|
__type: "transaction_aggregate_bool_exp";
|
|
68888
69309
|
};
|
|
69310
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
68889
69311
|
source: { __type: "source_bool_exp" };
|
|
68890
69312
|
sourceId: { __type: "uuid_comparison_exp" };
|
|
68891
69313
|
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
@@ -68896,17 +69318,10 @@ export declare const generatedSchema: {
|
|
|
68896
69318
|
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
68897
69319
|
};
|
|
68898
69320
|
transaction_delete_at_path_input: {
|
|
68899
|
-
matchers: { __type: "[String!]" };
|
|
68900
69321
|
recurringPattern: { __type: "[String!]" };
|
|
68901
69322
|
};
|
|
68902
|
-
transaction_delete_elem_input: {
|
|
68903
|
-
|
|
68904
|
-
recurringPattern: { __type: "Int" };
|
|
68905
|
-
};
|
|
68906
|
-
transaction_delete_key_input: {
|
|
68907
|
-
matchers: { __type: "String" };
|
|
68908
|
-
recurringPattern: { __type: "String" };
|
|
68909
|
-
};
|
|
69323
|
+
transaction_delete_elem_input: { recurringPattern: { __type: "Int" } };
|
|
69324
|
+
transaction_delete_key_input: { recurringPattern: { __type: "String" } };
|
|
68910
69325
|
transaction_inc_input: { centTotal: { __type: "Int" } };
|
|
68911
69326
|
transaction_insert_input: {
|
|
68912
69327
|
account: { __type: "account_obj_rel_insert_input" };
|
|
@@ -68929,7 +69344,9 @@ export declare const generatedSchema: {
|
|
|
68929
69344
|
journalEntries: { __type: "journalEntry_arr_rel_insert_input" };
|
|
68930
69345
|
lines: { __type: "transactionLine_arr_rel_insert_input" };
|
|
68931
69346
|
matchBankAccountLast4: { __type: "String" };
|
|
68932
|
-
|
|
69347
|
+
match_line_type_classification: { __type: "String" };
|
|
69348
|
+
match_reservation_confirmation_code: { __type: "String" };
|
|
69349
|
+
match_reservation_stripe_guest_ref: { __type: "String" };
|
|
68933
69350
|
paidAt: { __type: "timestamptz" };
|
|
68934
69351
|
paidStatus: { __type: "paidStatus_enum" };
|
|
68935
69352
|
recurringFeeId: { __type: "uuid" };
|
|
@@ -68937,6 +69354,7 @@ export declare const generatedSchema: {
|
|
|
68937
69354
|
recurringTemplate: { __type: "transaction_obj_rel_insert_input" };
|
|
68938
69355
|
recurringTemplateId: { __type: "uuid" };
|
|
68939
69356
|
recurringTemplateInstances: { __type: "transaction_arr_rel_insert_input" };
|
|
69357
|
+
short_ref: { __type: "String" };
|
|
68940
69358
|
source: { __type: "source_obj_rel_insert_input" };
|
|
68941
69359
|
sourceId: { __type: "uuid" };
|
|
68942
69360
|
status: { __type: "activeStatus_enum" };
|
|
@@ -68959,9 +69377,13 @@ export declare const generatedSchema: {
|
|
|
68959
69377
|
id: { __type: "uuid" };
|
|
68960
69378
|
matchBankAccountLast4: { __type: "String" };
|
|
68961
69379
|
matchStatus: { __type: "String" };
|
|
69380
|
+
match_line_type_classification: { __type: "String" };
|
|
69381
|
+
match_reservation_confirmation_code: { __type: "String" };
|
|
69382
|
+
match_reservation_stripe_guest_ref: { __type: "String" };
|
|
68962
69383
|
paidAt: { __type: "timestamptz" };
|
|
68963
69384
|
recurringFeeId: { __type: "uuid" };
|
|
68964
69385
|
recurringTemplateId: { __type: "uuid" };
|
|
69386
|
+
short_ref: { __type: "String" };
|
|
68965
69387
|
sourceId: { __type: "uuid" };
|
|
68966
69388
|
tenantId: { __type: "uuid" };
|
|
68967
69389
|
uniqueRef: { __type: "String" };
|
|
@@ -68979,9 +69401,13 @@ export declare const generatedSchema: {
|
|
|
68979
69401
|
id: { __type: "order_by" };
|
|
68980
69402
|
matchBankAccountLast4: { __type: "order_by" };
|
|
68981
69403
|
matchStatus: { __type: "order_by" };
|
|
69404
|
+
match_line_type_classification: { __type: "order_by" };
|
|
69405
|
+
match_reservation_confirmation_code: { __type: "order_by" };
|
|
69406
|
+
match_reservation_stripe_guest_ref: { __type: "order_by" };
|
|
68982
69407
|
paidAt: { __type: "order_by" };
|
|
68983
69408
|
recurringFeeId: { __type: "order_by" };
|
|
68984
69409
|
recurringTemplateId: { __type: "order_by" };
|
|
69410
|
+
short_ref: { __type: "order_by" };
|
|
68985
69411
|
sourceId: { __type: "order_by" };
|
|
68986
69412
|
tenantId: { __type: "order_by" };
|
|
68987
69413
|
uniqueRef: { __type: "order_by" };
|
|
@@ -69000,9 +69426,13 @@ export declare const generatedSchema: {
|
|
|
69000
69426
|
id: { __type: "uuid" };
|
|
69001
69427
|
matchBankAccountLast4: { __type: "String" };
|
|
69002
69428
|
matchStatus: { __type: "String" };
|
|
69429
|
+
match_line_type_classification: { __type: "String" };
|
|
69430
|
+
match_reservation_confirmation_code: { __type: "String" };
|
|
69431
|
+
match_reservation_stripe_guest_ref: { __type: "String" };
|
|
69003
69432
|
paidAt: { __type: "timestamptz" };
|
|
69004
69433
|
recurringFeeId: { __type: "uuid" };
|
|
69005
69434
|
recurringTemplateId: { __type: "uuid" };
|
|
69435
|
+
short_ref: { __type: "String" };
|
|
69006
69436
|
sourceId: { __type: "uuid" };
|
|
69007
69437
|
tenantId: { __type: "uuid" };
|
|
69008
69438
|
uniqueRef: { __type: "String" };
|
|
@@ -69020,9 +69450,13 @@ export declare const generatedSchema: {
|
|
|
69020
69450
|
id: { __type: "order_by" };
|
|
69021
69451
|
matchBankAccountLast4: { __type: "order_by" };
|
|
69022
69452
|
matchStatus: { __type: "order_by" };
|
|
69453
|
+
match_line_type_classification: { __type: "order_by" };
|
|
69454
|
+
match_reservation_confirmation_code: { __type: "order_by" };
|
|
69455
|
+
match_reservation_stripe_guest_ref: { __type: "order_by" };
|
|
69023
69456
|
paidAt: { __type: "order_by" };
|
|
69024
69457
|
recurringFeeId: { __type: "order_by" };
|
|
69025
69458
|
recurringTemplateId: { __type: "order_by" };
|
|
69459
|
+
short_ref: { __type: "order_by" };
|
|
69026
69460
|
sourceId: { __type: "order_by" };
|
|
69027
69461
|
tenantId: { __type: "order_by" };
|
|
69028
69462
|
uniqueRef: { __type: "order_by" };
|
|
@@ -69064,7 +69498,9 @@ export declare const generatedSchema: {
|
|
|
69064
69498
|
lines_aggregate: { __type: "transactionLine_aggregate_order_by" };
|
|
69065
69499
|
matchBankAccountLast4: { __type: "order_by" };
|
|
69066
69500
|
matchStatus: { __type: "order_by" };
|
|
69067
|
-
|
|
69501
|
+
match_line_type_classification: { __type: "order_by" };
|
|
69502
|
+
match_reservation_confirmation_code: { __type: "order_by" };
|
|
69503
|
+
match_reservation_stripe_guest_ref: { __type: "order_by" };
|
|
69068
69504
|
paidAt: { __type: "order_by" };
|
|
69069
69505
|
paidStatus: { __type: "order_by" };
|
|
69070
69506
|
recurringFeeId: { __type: "order_by" };
|
|
@@ -69074,6 +69510,7 @@ export declare const generatedSchema: {
|
|
|
69074
69510
|
recurringTemplateInstances_aggregate: {
|
|
69075
69511
|
__type: "transaction_aggregate_order_by";
|
|
69076
69512
|
};
|
|
69513
|
+
short_ref: { __type: "order_by" };
|
|
69077
69514
|
source: { __type: "source_order_by" };
|
|
69078
69515
|
sourceId: { __type: "order_by" };
|
|
69079
69516
|
status: { __type: "order_by" };
|
|
@@ -69084,10 +69521,7 @@ export declare const generatedSchema: {
|
|
|
69084
69521
|
updatedAt: { __type: "order_by" };
|
|
69085
69522
|
};
|
|
69086
69523
|
transaction_pk_columns_input: { id: { __type: "uuid!" } };
|
|
69087
|
-
transaction_prepend_input: {
|
|
69088
|
-
matchers: { __type: "jsonb" };
|
|
69089
|
-
recurringPattern: { __type: "jsonb" };
|
|
69090
|
-
};
|
|
69524
|
+
transaction_prepend_input: { recurringPattern: { __type: "jsonb" } };
|
|
69091
69525
|
transaction_set_input: {
|
|
69092
69526
|
accountId: { __type: "uuid" };
|
|
69093
69527
|
centTotal: { __type: "Int" };
|
|
@@ -69100,12 +69534,15 @@ export declare const generatedSchema: {
|
|
|
69100
69534
|
dueAt: { __type: "timestamptz" };
|
|
69101
69535
|
id: { __type: "uuid" };
|
|
69102
69536
|
matchBankAccountLast4: { __type: "String" };
|
|
69103
|
-
|
|
69537
|
+
match_line_type_classification: { __type: "String" };
|
|
69538
|
+
match_reservation_confirmation_code: { __type: "String" };
|
|
69539
|
+
match_reservation_stripe_guest_ref: { __type: "String" };
|
|
69104
69540
|
paidAt: { __type: "timestamptz" };
|
|
69105
69541
|
paidStatus: { __type: "paidStatus_enum" };
|
|
69106
69542
|
recurringFeeId: { __type: "uuid" };
|
|
69107
69543
|
recurringPattern: { __type: "jsonb" };
|
|
69108
69544
|
recurringTemplateId: { __type: "uuid" };
|
|
69545
|
+
short_ref: { __type: "String" };
|
|
69109
69546
|
sourceId: { __type: "uuid" };
|
|
69110
69547
|
status: { __type: "activeStatus_enum" };
|
|
69111
69548
|
tenantId: { __type: "uuid" };
|
|
@@ -69145,12 +69582,15 @@ export declare const generatedSchema: {
|
|
|
69145
69582
|
id: { __type: "uuid" };
|
|
69146
69583
|
matchBankAccountLast4: { __type: "String" };
|
|
69147
69584
|
matchStatus: { __type: "String" };
|
|
69148
|
-
|
|
69585
|
+
match_line_type_classification: { __type: "String" };
|
|
69586
|
+
match_reservation_confirmation_code: { __type: "String" };
|
|
69587
|
+
match_reservation_stripe_guest_ref: { __type: "String" };
|
|
69149
69588
|
paidAt: { __type: "timestamptz" };
|
|
69150
69589
|
paidStatus: { __type: "paidStatus_enum" };
|
|
69151
69590
|
recurringFeeId: { __type: "uuid" };
|
|
69152
69591
|
recurringPattern: { __type: "jsonb" };
|
|
69153
69592
|
recurringTemplateId: { __type: "uuid" };
|
|
69593
|
+
short_ref: { __type: "String" };
|
|
69154
69594
|
sourceId: { __type: "uuid" };
|
|
69155
69595
|
status: { __type: "activeStatus_enum" };
|
|
69156
69596
|
tenantId: { __type: "uuid" };
|
|
@@ -76814,6 +77254,10 @@ export interface contact {
|
|
|
76814
77254
|
name: ScalarsEnums["String"];
|
|
76815
77255
|
phone?: Maybe<ScalarsEnums["String"]>;
|
|
76816
77256
|
pmsStatus?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
77257
|
+
/**
|
|
77258
|
+
* Human-readable system ID (CNT-XXX-XXXX-XXX).
|
|
77259
|
+
*/
|
|
77260
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
76817
77261
|
/**
|
|
76818
77262
|
* An object relationship
|
|
76819
77263
|
*/
|
|
@@ -77141,6 +77585,10 @@ export interface contact_max_fields {
|
|
|
77141
77585
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77142
77586
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77143
77587
|
phone?: Maybe<ScalarsEnums["String"]>;
|
|
77588
|
+
/**
|
|
77589
|
+
* Human-readable system ID (CNT-XXX-XXXX-XXX).
|
|
77590
|
+
*/
|
|
77591
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
77144
77592
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77145
77593
|
taxId?: Maybe<ScalarsEnums["String"]>;
|
|
77146
77594
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -77161,6 +77609,10 @@ export interface contact_min_fields {
|
|
|
77161
77609
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77162
77610
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77163
77611
|
phone?: Maybe<ScalarsEnums["String"]>;
|
|
77612
|
+
/**
|
|
77613
|
+
* Human-readable system ID (CNT-XXX-XXXX-XXX).
|
|
77614
|
+
*/
|
|
77615
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
77164
77616
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77165
77617
|
taxId?: Maybe<ScalarsEnums["String"]>;
|
|
77166
77618
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -77279,6 +77731,7 @@ export interface core_flow {
|
|
|
77279
77731
|
app_id: ScalarsEnums["String"];
|
|
77280
77732
|
description?: Maybe<ScalarsEnums["String"]>;
|
|
77281
77733
|
id: ScalarsEnums["uuid"];
|
|
77734
|
+
is_public: ScalarsEnums["Boolean"];
|
|
77282
77735
|
left_type?: Maybe<ScalarsEnums["String"]>;
|
|
77283
77736
|
mapping_schema: (args?: {
|
|
77284
77737
|
/**
|
|
@@ -77287,6 +77740,12 @@ export interface core_flow {
|
|
|
77287
77740
|
path?: Maybe<Scalars["String"]>;
|
|
77288
77741
|
}) => ScalarsEnums["jsonb"];
|
|
77289
77742
|
right_type?: Maybe<ScalarsEnums["String"]>;
|
|
77743
|
+
run_schema: (args?: {
|
|
77744
|
+
/**
|
|
77745
|
+
* JSON select path
|
|
77746
|
+
*/
|
|
77747
|
+
path?: Maybe<Scalars["String"]>;
|
|
77748
|
+
}) => ScalarsEnums["jsonb"];
|
|
77290
77749
|
setting_schema: (args?: {
|
|
77291
77750
|
/**
|
|
77292
77751
|
* JSON select path
|
|
@@ -77296,6 +77755,7 @@ export interface core_flow {
|
|
|
77296
77755
|
title: ScalarsEnums["String"];
|
|
77297
77756
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77298
77757
|
uniqueRef: ScalarsEnums["String"];
|
|
77758
|
+
use_global_mapping: ScalarsEnums["Boolean"];
|
|
77299
77759
|
}
|
|
77300
77760
|
|
|
77301
77761
|
/**
|
|
@@ -77335,6 +77795,7 @@ export interface core_flow_mapping {
|
|
|
77335
77795
|
*/
|
|
77336
77796
|
booking_channel?: Maybe<booking_channel>;
|
|
77337
77797
|
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77798
|
+
connection_id: ScalarsEnums["uuid"];
|
|
77338
77799
|
/**
|
|
77339
77800
|
* An object relationship
|
|
77340
77801
|
*/
|
|
@@ -77344,8 +77805,8 @@ export interface core_flow_mapping {
|
|
|
77344
77805
|
/**
|
|
77345
77806
|
* An object relationship
|
|
77346
77807
|
*/
|
|
77347
|
-
flow
|
|
77348
|
-
flow_id
|
|
77808
|
+
flow?: Maybe<core_flow>;
|
|
77809
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77349
77810
|
id: ScalarsEnums["uuid"];
|
|
77350
77811
|
/**
|
|
77351
77812
|
* An object relationship
|
|
@@ -77406,6 +77867,7 @@ export interface core_flow_mapping_max_fields {
|
|
|
77406
77867
|
__typename?: "core_flow_mapping_max_fields";
|
|
77407
77868
|
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77408
77869
|
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77870
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77409
77871
|
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77410
77872
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77411
77873
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -77425,6 +77887,7 @@ export interface core_flow_mapping_min_fields {
|
|
|
77425
77887
|
__typename?: "core_flow_mapping_min_fields";
|
|
77426
77888
|
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77427
77889
|
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77890
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77428
77891
|
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77429
77892
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77430
77893
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -80003,6 +80466,10 @@ export interface listing {
|
|
|
80003
80466
|
*/
|
|
80004
80467
|
where?: Maybe<setting_bool_exp>;
|
|
80005
80468
|
}) => setting_aggregate;
|
|
80469
|
+
/**
|
|
80470
|
+
* Human-readable system ID (LST-XXX-XXXX-XXX).
|
|
80471
|
+
*/
|
|
80472
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
80006
80473
|
/**
|
|
80007
80474
|
* An object relationship
|
|
80008
80475
|
*/
|
|
@@ -81237,6 +81704,10 @@ export interface listing_max_fields {
|
|
|
81237
81704
|
imageUri?: Maybe<ScalarsEnums["String"]>;
|
|
81238
81705
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
81239
81706
|
ownerContactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81707
|
+
/**
|
|
81708
|
+
* Human-readable system ID (LST-XXX-XXXX-XXX).
|
|
81709
|
+
*/
|
|
81710
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
81240
81711
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81241
81712
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81242
81713
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -81271,6 +81742,10 @@ export interface listing_min_fields {
|
|
|
81271
81742
|
imageUri?: Maybe<ScalarsEnums["String"]>;
|
|
81272
81743
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
81273
81744
|
ownerContactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81745
|
+
/**
|
|
81746
|
+
* Human-readable system ID (LST-XXX-XXXX-XXX).
|
|
81747
|
+
*/
|
|
81748
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
81274
81749
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81275
81750
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81276
81751
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -84939,22 +85414,12 @@ export interface Mutation {
|
|
|
84939
85414
|
pk_columns: transaction_pk_columns_input;
|
|
84940
85415
|
}) => Maybe<transaction>;
|
|
84941
85416
|
updateTransactionLine: (args: {
|
|
84942
|
-
_append?: Maybe<transactionLine_append_input>;
|
|
84943
|
-
_delete_at_path?: Maybe<transactionLine_delete_at_path_input>;
|
|
84944
|
-
_delete_elem?: Maybe<transactionLine_delete_elem_input>;
|
|
84945
|
-
_delete_key?: Maybe<transactionLine_delete_key_input>;
|
|
84946
85417
|
_inc?: Maybe<transactionLine_inc_input>;
|
|
84947
|
-
_prepend?: Maybe<transactionLine_prepend_input>;
|
|
84948
85418
|
_set?: Maybe<transactionLine_set_input>;
|
|
84949
85419
|
pk_columns: transactionLine_pk_columns_input;
|
|
84950
85420
|
}) => Maybe<transactionLine>;
|
|
84951
85421
|
updateTransactionLines: (args: {
|
|
84952
|
-
_append?: Maybe<transactionLine_append_input>;
|
|
84953
|
-
_delete_at_path?: Maybe<transactionLine_delete_at_path_input>;
|
|
84954
|
-
_delete_elem?: Maybe<transactionLine_delete_elem_input>;
|
|
84955
|
-
_delete_key?: Maybe<transactionLine_delete_key_input>;
|
|
84956
85422
|
_inc?: Maybe<transactionLine_inc_input>;
|
|
84957
|
-
_prepend?: Maybe<transactionLine_prepend_input>;
|
|
84958
85423
|
_set?: Maybe<transactionLine_set_input>;
|
|
84959
85424
|
where: transactionLine_bool_exp;
|
|
84960
85425
|
}) => Maybe<transactionLine_mutation_response>;
|
|
@@ -93257,6 +93722,7 @@ export interface reservation {
|
|
|
93257
93722
|
where?: Maybe<file_storage_bool_exp>;
|
|
93258
93723
|
}) => file_storage_aggregate;
|
|
93259
93724
|
generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
93725
|
+
general_ledger_status: ScalarsEnums["activeStatus_enum"];
|
|
93260
93726
|
guestName?: Maybe<ScalarsEnums["String"]>;
|
|
93261
93727
|
guests?: Maybe<ScalarsEnums["Int"]>;
|
|
93262
93728
|
id: ScalarsEnums["uuid"];
|
|
@@ -93326,6 +93792,7 @@ export interface reservation {
|
|
|
93326
93792
|
listingConnection?: Maybe<listing_connection>;
|
|
93327
93793
|
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
93328
93794
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
93795
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
93329
93796
|
matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
|
|
93330
93797
|
/**
|
|
93331
93798
|
* An array relationship
|
|
@@ -93439,6 +93906,7 @@ export interface reservation {
|
|
|
93439
93906
|
*/
|
|
93440
93907
|
where?: Maybe<owner_statement_line_bool_exp>;
|
|
93441
93908
|
}) => owner_statement_line_aggregate;
|
|
93909
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
93442
93910
|
paidStatus?: Maybe<ScalarsEnums["paidStatus_enum"]>;
|
|
93443
93911
|
/**
|
|
93444
93912
|
* An array relationship
|
|
@@ -93642,6 +94110,10 @@ export interface reservation {
|
|
|
93642
94110
|
*/
|
|
93643
94111
|
where?: Maybe<setting_bool_exp>;
|
|
93644
94112
|
}) => setting_aggregate;
|
|
94113
|
+
/**
|
|
94114
|
+
* Human-readable system ID (RES-XXX-XXXX-XXX).
|
|
94115
|
+
*/
|
|
94116
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
93645
94117
|
/**
|
|
93646
94118
|
* An array relationship
|
|
93647
94119
|
*/
|
|
@@ -93748,6 +94220,7 @@ export interface reservation {
|
|
|
93748
94220
|
where?: Maybe<source_bool_exp>;
|
|
93749
94221
|
}) => source_aggregate;
|
|
93750
94222
|
status?: Maybe<ScalarsEnums["reservation_status_enum"]>;
|
|
94223
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
93751
94224
|
/**
|
|
93752
94225
|
* An object relationship
|
|
93753
94226
|
*/
|
|
@@ -94210,7 +94683,10 @@ export interface reservation_avg_fields {
|
|
|
94210
94683
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94211
94684
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94212
94685
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94686
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94213
94687
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94688
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94689
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94214
94690
|
}
|
|
94215
94691
|
|
|
94216
94692
|
/**
|
|
@@ -94245,12 +94721,19 @@ export interface reservation_max_fields {
|
|
|
94245
94721
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
94246
94722
|
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94247
94723
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94724
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94248
94725
|
matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
|
|
94249
94726
|
nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94250
94727
|
otaReservationId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94728
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94251
94729
|
paymentMethod?: Maybe<ScalarsEnums["String"]>;
|
|
94252
94730
|
pmsReferenceCode?: Maybe<ScalarsEnums["String"]>;
|
|
94731
|
+
/**
|
|
94732
|
+
* Human-readable system ID (RES-XXX-XXXX-XXX).
|
|
94733
|
+
*/
|
|
94734
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
94253
94735
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94736
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94254
94737
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94255
94738
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
94256
94739
|
uniqueRef2?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -94289,12 +94772,19 @@ export interface reservation_min_fields {
|
|
|
94289
94772
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
94290
94773
|
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94291
94774
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94775
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94292
94776
|
matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
|
|
94293
94777
|
nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94294
94778
|
otaReservationId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94779
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94295
94780
|
paymentMethod?: Maybe<ScalarsEnums["String"]>;
|
|
94296
94781
|
pmsReferenceCode?: Maybe<ScalarsEnums["String"]>;
|
|
94782
|
+
/**
|
|
94783
|
+
* Human-readable system ID (RES-XXX-XXXX-XXX).
|
|
94784
|
+
*/
|
|
94785
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
94297
94786
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94787
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94298
94788
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94299
94789
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
94300
94790
|
uniqueRef2?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -94393,7 +94883,10 @@ export interface reservation_stddev_fields {
|
|
|
94393
94883
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94394
94884
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94395
94885
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94886
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94396
94887
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94888
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94889
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94397
94890
|
}
|
|
94398
94891
|
|
|
94399
94892
|
/**
|
|
@@ -94412,7 +94905,10 @@ export interface reservation_stddev_pop_fields {
|
|
|
94412
94905
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94413
94906
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94414
94907
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94908
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94415
94909
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94910
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94911
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94416
94912
|
}
|
|
94417
94913
|
|
|
94418
94914
|
/**
|
|
@@ -94431,7 +94927,10 @@ export interface reservation_stddev_samp_fields {
|
|
|
94431
94927
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94432
94928
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94433
94929
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94930
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94434
94931
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94932
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94933
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94435
94934
|
}
|
|
94436
94935
|
|
|
94437
94936
|
/**
|
|
@@ -94450,7 +94949,10 @@ export interface reservation_sum_fields {
|
|
|
94450
94949
|
centService?: Maybe<ScalarsEnums["Int"]>;
|
|
94451
94950
|
centTotal?: Maybe<ScalarsEnums["bigint"]>;
|
|
94452
94951
|
guests?: Maybe<ScalarsEnums["Int"]>;
|
|
94952
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94453
94953
|
nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94954
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94955
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94454
94956
|
}
|
|
94455
94957
|
|
|
94456
94958
|
/**
|
|
@@ -94469,7 +94971,10 @@ export interface reservation_var_pop_fields {
|
|
|
94469
94971
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94470
94972
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94471
94973
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94974
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94472
94975
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94976
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94977
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94473
94978
|
}
|
|
94474
94979
|
|
|
94475
94980
|
/**
|
|
@@ -94488,7 +94993,10 @@ export interface reservation_var_samp_fields {
|
|
|
94488
94993
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94489
94994
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94490
94995
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94996
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94491
94997
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94998
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94999
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94492
95000
|
}
|
|
94493
95001
|
|
|
94494
95002
|
/**
|
|
@@ -94507,7 +95015,10 @@ export interface reservation_variance_fields {
|
|
|
94507
95015
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94508
95016
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94509
95017
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
95018
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94510
95019
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
95020
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
95021
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94511
95022
|
}
|
|
94512
95023
|
|
|
94513
95024
|
/**
|
|
@@ -100813,6 +101324,7 @@ export interface tenant {
|
|
|
100813
101324
|
*/
|
|
100814
101325
|
where?: Maybe<owner_statement_bool_exp>;
|
|
100815
101326
|
}) => owner_statement_aggregate;
|
|
101327
|
+
owner_portal_show_draft_statements?: Maybe<ScalarsEnums["Boolean"]>;
|
|
100816
101328
|
/**
|
|
100817
101329
|
* An array relationship
|
|
100818
101330
|
*/
|
|
@@ -101093,6 +101605,15 @@ export interface tenant {
|
|
|
101093
101605
|
*/
|
|
101094
101606
|
where?: Maybe<setting_bool_exp>;
|
|
101095
101607
|
}) => Array<setting>;
|
|
101608
|
+
/**
|
|
101609
|
+
* JSON column to hold team settings like "owner_portal_show_reservation_totals" or "owner_portal_show_draft_statements
|
|
101610
|
+
*/
|
|
101611
|
+
settingsData: (args?: {
|
|
101612
|
+
/**
|
|
101613
|
+
* JSON select path
|
|
101614
|
+
*/
|
|
101615
|
+
path?: Maybe<Scalars["String"]>;
|
|
101616
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
101096
101617
|
/**
|
|
101097
101618
|
* An aggregate relationship
|
|
101098
101619
|
*/
|
|
@@ -102903,12 +103424,9 @@ export interface transaction {
|
|
|
102903
103424
|
}) => transactionLine_aggregate;
|
|
102904
103425
|
matchBankAccountLast4?: Maybe<ScalarsEnums["String"]>;
|
|
102905
103426
|
matchStatus?: Maybe<ScalarsEnums["String"]>;
|
|
102906
|
-
|
|
102907
|
-
|
|
102908
|
-
|
|
102909
|
-
*/
|
|
102910
|
-
path?: Maybe<Scalars["String"]>;
|
|
102911
|
-
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
103427
|
+
match_line_type_classification?: Maybe<ScalarsEnums["String"]>;
|
|
103428
|
+
match_reservation_confirmation_code?: Maybe<ScalarsEnums["String"]>;
|
|
103429
|
+
match_reservation_stripe_guest_ref?: Maybe<ScalarsEnums["String"]>;
|
|
102912
103430
|
paidAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
102913
103431
|
paidStatus?: Maybe<ScalarsEnums["paidStatus_enum"]>;
|
|
102914
103432
|
recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -102973,6 +103491,10 @@ export interface transaction {
|
|
|
102973
103491
|
*/
|
|
102974
103492
|
where?: Maybe<transaction_bool_exp>;
|
|
102975
103493
|
}) => transaction_aggregate;
|
|
103494
|
+
/**
|
|
103495
|
+
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103496
|
+
*/
|
|
103497
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
102976
103498
|
/**
|
|
102977
103499
|
* An object relationship
|
|
102978
103500
|
*/
|
|
@@ -103000,6 +103522,8 @@ export interface transactionLine {
|
|
|
103000
103522
|
account?: Maybe<account>;
|
|
103001
103523
|
accountAssignmentType?: Maybe<ScalarsEnums["accountAssignmentType_enum"]>;
|
|
103002
103524
|
accountId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103525
|
+
applied_amount_tax_behavior?: Maybe<ScalarsEnums["taxBehavior_enum"]>;
|
|
103526
|
+
applied_amount_tax_rate_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103003
103527
|
centTotal: ScalarsEnums["Int"];
|
|
103004
103528
|
/**
|
|
103005
103529
|
* An object relationship
|
|
@@ -103075,12 +103599,6 @@ export interface transactionLine {
|
|
|
103075
103599
|
matchReservationConfirmationCode?: Maybe<ScalarsEnums["String"]>;
|
|
103076
103600
|
matchReservationStripeGuestRef?: Maybe<ScalarsEnums["String"]>;
|
|
103077
103601
|
matchStatus?: Maybe<ScalarsEnums["String"]>;
|
|
103078
|
-
matchers: (args?: {
|
|
103079
|
-
/**
|
|
103080
|
-
* JSON select path
|
|
103081
|
-
*/
|
|
103082
|
-
path?: Maybe<Scalars["String"]>;
|
|
103083
|
-
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
103084
103602
|
/**
|
|
103085
103603
|
* An object relationship
|
|
103086
103604
|
*/
|
|
@@ -103155,6 +103673,7 @@ export interface transactionLine_avg_fields {
|
|
|
103155
103673
|
export interface transactionLine_max_fields {
|
|
103156
103674
|
__typename?: "transactionLine_max_fields";
|
|
103157
103675
|
accountId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103676
|
+
applied_amount_tax_rate_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103158
103677
|
centTotal?: Maybe<ScalarsEnums["Int"]>;
|
|
103159
103678
|
contactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103160
103679
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -103181,6 +103700,7 @@ export interface transactionLine_max_fields {
|
|
|
103181
103700
|
export interface transactionLine_min_fields {
|
|
103182
103701
|
__typename?: "transactionLine_min_fields";
|
|
103183
103702
|
accountId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103703
|
+
applied_amount_tax_rate_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103184
103704
|
centTotal?: Maybe<ScalarsEnums["Int"]>;
|
|
103185
103705
|
contactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103186
103706
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -103394,9 +103914,16 @@ export interface transaction_max_fields {
|
|
|
103394
103914
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103395
103915
|
matchBankAccountLast4?: Maybe<ScalarsEnums["String"]>;
|
|
103396
103916
|
matchStatus?: Maybe<ScalarsEnums["String"]>;
|
|
103917
|
+
match_line_type_classification?: Maybe<ScalarsEnums["String"]>;
|
|
103918
|
+
match_reservation_confirmation_code?: Maybe<ScalarsEnums["String"]>;
|
|
103919
|
+
match_reservation_stripe_guest_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103397
103920
|
paidAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
103398
103921
|
recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103399
103922
|
recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103923
|
+
/**
|
|
103924
|
+
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103925
|
+
*/
|
|
103926
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103400
103927
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103401
103928
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103402
103929
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -103419,9 +103946,16 @@ export interface transaction_min_fields {
|
|
|
103419
103946
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103420
103947
|
matchBankAccountLast4?: Maybe<ScalarsEnums["String"]>;
|
|
103421
103948
|
matchStatus?: Maybe<ScalarsEnums["String"]>;
|
|
103949
|
+
match_line_type_classification?: Maybe<ScalarsEnums["String"]>;
|
|
103950
|
+
match_reservation_confirmation_code?: Maybe<ScalarsEnums["String"]>;
|
|
103951
|
+
match_reservation_stripe_guest_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103422
103952
|
paidAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
103423
103953
|
recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103424
103954
|
recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103955
|
+
/**
|
|
103956
|
+
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103957
|
+
*/
|
|
103958
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103425
103959
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103426
103960
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103427
103961
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -107768,6 +108302,12 @@ export interface ScalarsEnums extends Scalars {
|
|
|
107768
108302
|
core_flow_mapping_select_column: core_flow_mapping_select_column | undefined;
|
|
107769
108303
|
core_flow_mapping_update_column: core_flow_mapping_update_column | undefined;
|
|
107770
108304
|
core_flow_select_column: core_flow_select_column | undefined;
|
|
108305
|
+
core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns:
|
|
108306
|
+
| core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns
|
|
108307
|
+
| undefined;
|
|
108308
|
+
core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns:
|
|
108309
|
+
| core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns
|
|
108310
|
+
| undefined;
|
|
107771
108311
|
core_flow_setting_constraint: core_flow_setting_constraint | undefined;
|
|
107772
108312
|
core_flow_setting_select_column: core_flow_setting_select_column | undefined;
|
|
107773
108313
|
core_flow_setting_update_column: core_flow_setting_update_column | undefined;
|