@vrplatform/graphql 1.1.41 → 1.1.42
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 +565 -14
- package/build/main/gqty/schema.generated.js +200 -2
- package/build/module/gqty/schema.generated.d.ts +565 -14
- package/build/module/gqty/schema.generated.js +200 -2
- package/package.json +2 -2
- package/src/gqty/schema.generated.d.ts +565 -14
- package/src/gqty/schema.generated.js +204 -2
|
@@ -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 {
|
|
@@ -24054,6 +24254,7 @@ export interface tenant_bool_exp {
|
|
|
24054
24254
|
name?: InputMaybe<String_comparison_exp>;
|
|
24055
24255
|
ownerStatements?: InputMaybe<owner_statement_bool_exp>;
|
|
24056
24256
|
ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_bool_exp>;
|
|
24257
|
+
owner_portal_show_draft_statements?: InputMaybe<Boolean_comparison_exp>;
|
|
24057
24258
|
owners?: InputMaybe<owner_bool_exp>;
|
|
24058
24259
|
owners_aggregate?: InputMaybe<owner_aggregate_bool_exp>;
|
|
24059
24260
|
partner?: InputMaybe<tenant_bool_exp>;
|
|
@@ -24190,6 +24391,7 @@ export interface tenant_insert_input {
|
|
|
24190
24391
|
monitorConnections?: InputMaybe<monitorConnection_arr_rel_insert_input>;
|
|
24191
24392
|
name?: InputMaybe<Scalars["String"]>;
|
|
24192
24393
|
ownerStatements?: InputMaybe<owner_statement_arr_rel_insert_input>;
|
|
24394
|
+
owner_portal_show_draft_statements?: InputMaybe<Scalars["Boolean"]>;
|
|
24193
24395
|
owners?: InputMaybe<owner_arr_rel_insert_input>;
|
|
24194
24396
|
partner?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
24195
24397
|
partnerId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -24383,6 +24585,7 @@ export interface tenant_order_by {
|
|
|
24383
24585
|
monitorConnections_aggregate?: InputMaybe<monitorConnection_aggregate_order_by>;
|
|
24384
24586
|
name?: InputMaybe<order_by>;
|
|
24385
24587
|
ownerStatements_aggregate?: InputMaybe<owner_statement_aggregate_order_by>;
|
|
24588
|
+
owner_portal_show_draft_statements?: InputMaybe<order_by>;
|
|
24386
24589
|
owners_aggregate?: InputMaybe<owner_aggregate_order_by>;
|
|
24387
24590
|
partner?: InputMaybe<tenant_order_by>;
|
|
24388
24591
|
partnerId?: InputMaybe<order_by>;
|
|
@@ -24506,6 +24709,8 @@ export type tenant_select_column =
|
|
|
24506
24709
|
/** column name */
|
|
24507
24710
|
| "name"
|
|
24508
24711
|
/** column name */
|
|
24712
|
+
| "owner_portal_show_draft_statements"
|
|
24713
|
+
/** column name */
|
|
24509
24714
|
| "partnerId"
|
|
24510
24715
|
/** column name */
|
|
24511
24716
|
| "setup"
|
|
@@ -24551,6 +24756,8 @@ export type tenant_select_column_tenant_aggregate_bool_exp_bool_and_arguments_co
|
|
|
24551
24756
|
/** column name */
|
|
24552
24757
|
| "isTest"
|
|
24553
24758
|
/** column name */
|
|
24759
|
+
| "owner_portal_show_draft_statements"
|
|
24760
|
+
/** column name */
|
|
24554
24761
|
| "setupCompleted"
|
|
24555
24762
|
/** column name */
|
|
24556
24763
|
| "svixEndpoints";
|
|
@@ -24568,6 +24775,8 @@ export type tenant_select_column_tenant_aggregate_bool_exp_bool_or_arguments_col
|
|
|
24568
24775
|
/** column name */
|
|
24569
24776
|
| "isTest"
|
|
24570
24777
|
/** column name */
|
|
24778
|
+
| "owner_portal_show_draft_statements"
|
|
24779
|
+
/** column name */
|
|
24571
24780
|
| "setupCompleted"
|
|
24572
24781
|
/** column name */
|
|
24573
24782
|
| "svixEndpoints";
|
|
@@ -24609,6 +24818,7 @@ export interface tenant_set_input {
|
|
|
24609
24818
|
logo?: InputMaybe<Scalars["String"]>;
|
|
24610
24819
|
longTermStayNights?: InputMaybe<Scalars["Int"]>;
|
|
24611
24820
|
name?: InputMaybe<Scalars["String"]>;
|
|
24821
|
+
owner_portal_show_draft_statements?: InputMaybe<Scalars["Boolean"]>;
|
|
24612
24822
|
partnerId?: InputMaybe<Scalars["uuid"]>;
|
|
24613
24823
|
setup?: InputMaybe<Scalars["jsonb"]>;
|
|
24614
24824
|
setupCompleted?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -24693,6 +24903,7 @@ export interface tenant_stream_cursor_value_input {
|
|
|
24693
24903
|
logo?: InputMaybe<Scalars["String"]>;
|
|
24694
24904
|
longTermStayNights?: InputMaybe<Scalars["Int"]>;
|
|
24695
24905
|
name?: InputMaybe<Scalars["String"]>;
|
|
24906
|
+
owner_portal_show_draft_statements?: InputMaybe<Scalars["Boolean"]>;
|
|
24696
24907
|
partnerId?: InputMaybe<Scalars["uuid"]>;
|
|
24697
24908
|
setup?: InputMaybe<Scalars["jsonb"]>;
|
|
24698
24909
|
setupCompleted?: InputMaybe<Scalars["Boolean"]>;
|
|
@@ -24788,6 +24999,8 @@ export type tenant_update_column =
|
|
|
24788
24999
|
/** column name */
|
|
24789
25000
|
| "name"
|
|
24790
25001
|
/** column name */
|
|
25002
|
+
| "owner_portal_show_draft_statements"
|
|
25003
|
+
/** column name */
|
|
24791
25004
|
| "partnerId"
|
|
24792
25005
|
/** column name */
|
|
24793
25006
|
| "setup"
|
|
@@ -26293,6 +26506,8 @@ export interface transactionLine_bool_exp {
|
|
|
26293
26506
|
account?: InputMaybe<account_bool_exp>;
|
|
26294
26507
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum_comparison_exp>;
|
|
26295
26508
|
accountId?: InputMaybe<uuid_comparison_exp>;
|
|
26509
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum_comparison_exp>;
|
|
26510
|
+
applied_amount_tax_rate_id?: InputMaybe<uuid_comparison_exp>;
|
|
26296
26511
|
centTotal?: InputMaybe<Int_comparison_exp>;
|
|
26297
26512
|
contact?: InputMaybe<contact_bool_exp>;
|
|
26298
26513
|
contactId?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -26359,6 +26574,8 @@ export interface transactionLine_insert_input {
|
|
|
26359
26574
|
account?: InputMaybe<account_obj_rel_insert_input>;
|
|
26360
26575
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum>;
|
|
26361
26576
|
accountId?: InputMaybe<Scalars["uuid"]>;
|
|
26577
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum>;
|
|
26578
|
+
applied_amount_tax_rate_id?: InputMaybe<Scalars["uuid"]>;
|
|
26362
26579
|
centTotal?: InputMaybe<Scalars["Int"]>;
|
|
26363
26580
|
contact?: InputMaybe<contact_obj_rel_insert_input>;
|
|
26364
26581
|
contactId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -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>;
|
|
@@ -26504,6 +26725,10 @@ export type transactionLine_select_column =
|
|
|
26504
26725
|
/** column name */
|
|
26505
26726
|
| "accountId"
|
|
26506
26727
|
/** column name */
|
|
26728
|
+
| "applied_amount_tax_behavior"
|
|
26729
|
+
/** column name */
|
|
26730
|
+
| "applied_amount_tax_rate_id"
|
|
26731
|
+
/** column name */
|
|
26507
26732
|
| "centTotal"
|
|
26508
26733
|
/** column name */
|
|
26509
26734
|
| "contactId"
|
|
@@ -26550,6 +26775,8 @@ export type transactionLine_select_column =
|
|
|
26550
26775
|
export interface transactionLine_set_input {
|
|
26551
26776
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum>;
|
|
26552
26777
|
accountId?: InputMaybe<Scalars["uuid"]>;
|
|
26778
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum>;
|
|
26779
|
+
applied_amount_tax_rate_id?: InputMaybe<Scalars["uuid"]>;
|
|
26553
26780
|
centTotal?: InputMaybe<Scalars["Int"]>;
|
|
26554
26781
|
contactId?: InputMaybe<Scalars["uuid"]>;
|
|
26555
26782
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -26602,6 +26829,8 @@ export interface transactionLine_stream_cursor_input {
|
|
|
26602
26829
|
export interface transactionLine_stream_cursor_value_input {
|
|
26603
26830
|
accountAssignmentType?: InputMaybe<accountAssignmentType_enum>;
|
|
26604
26831
|
accountId?: InputMaybe<Scalars["uuid"]>;
|
|
26832
|
+
applied_amount_tax_behavior?: InputMaybe<taxBehavior_enum>;
|
|
26833
|
+
applied_amount_tax_rate_id?: InputMaybe<Scalars["uuid"]>;
|
|
26605
26834
|
centTotal?: InputMaybe<Scalars["Int"]>;
|
|
26606
26835
|
contactId?: InputMaybe<Scalars["uuid"]>;
|
|
26607
26836
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -26638,6 +26867,10 @@ export type transactionLine_update_column =
|
|
|
26638
26867
|
/** column name */
|
|
26639
26868
|
| "accountId"
|
|
26640
26869
|
/** column name */
|
|
26870
|
+
| "applied_amount_tax_behavior"
|
|
26871
|
+
/** column name */
|
|
26872
|
+
| "applied_amount_tax_rate_id"
|
|
26873
|
+
/** column name */
|
|
26641
26874
|
| "centTotal"
|
|
26642
26875
|
/** column name */
|
|
26643
26876
|
| "contactId"
|
|
@@ -26880,6 +27113,7 @@ export interface transaction_bool_exp {
|
|
|
26880
27113
|
recurringTemplateId?: InputMaybe<uuid_comparison_exp>;
|
|
26881
27114
|
recurringTemplateInstances?: InputMaybe<transaction_bool_exp>;
|
|
26882
27115
|
recurringTemplateInstances_aggregate?: InputMaybe<transaction_aggregate_bool_exp>;
|
|
27116
|
+
short_ref?: InputMaybe<String_comparison_exp>;
|
|
26883
27117
|
source?: InputMaybe<source_bool_exp>;
|
|
26884
27118
|
sourceId?: InputMaybe<uuid_comparison_exp>;
|
|
26885
27119
|
status?: InputMaybe<activeStatus_enum_comparison_exp>;
|
|
@@ -26897,7 +27131,9 @@ export type transaction_constraint =
|
|
|
26897
27131
|
/** unique or primary key constraint on columns "source_id" */
|
|
26898
27132
|
| "transaction_source_id_key"
|
|
26899
27133
|
/** unique or primary key constraint on columns "unique_ref", "tenant_id" */
|
|
26900
|
-
| "transaction_tenant_id_unique_ref_key"
|
|
27134
|
+
| "transaction_tenant_id_unique_ref_key"
|
|
27135
|
+
/** unique or primary key constraint on columns "short_ref", "tenant_id" */
|
|
27136
|
+
| "transaction_tenant_short_ref_unq";
|
|
26901
27137
|
|
|
26902
27138
|
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
26903
27139
|
export interface transaction_delete_at_path_input {
|
|
@@ -26950,6 +27186,8 @@ export interface transaction_insert_input {
|
|
|
26950
27186
|
recurringTemplate?: InputMaybe<transaction_obj_rel_insert_input>;
|
|
26951
27187
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
26952
27188
|
recurringTemplateInstances?: InputMaybe<transaction_arr_rel_insert_input>;
|
|
27189
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27190
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
26953
27191
|
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
26954
27192
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
26955
27193
|
status?: InputMaybe<activeStatus_enum>;
|
|
@@ -26976,6 +27214,8 @@ export interface transaction_max_order_by {
|
|
|
26976
27214
|
paidAt?: InputMaybe<order_by>;
|
|
26977
27215
|
recurringFeeId?: InputMaybe<order_by>;
|
|
26978
27216
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27217
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27218
|
+
short_ref?: InputMaybe<order_by>;
|
|
26979
27219
|
sourceId?: InputMaybe<order_by>;
|
|
26980
27220
|
tenantId?: InputMaybe<order_by>;
|
|
26981
27221
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -26998,6 +27238,8 @@ export interface transaction_min_order_by {
|
|
|
26998
27238
|
paidAt?: InputMaybe<order_by>;
|
|
26999
27239
|
recurringFeeId?: InputMaybe<order_by>;
|
|
27000
27240
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27241
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27242
|
+
short_ref?: InputMaybe<order_by>;
|
|
27001
27243
|
sourceId?: InputMaybe<order_by>;
|
|
27002
27244
|
tenantId?: InputMaybe<order_by>;
|
|
27003
27245
|
uniqueRef?: InputMaybe<order_by>;
|
|
@@ -27047,6 +27289,7 @@ export interface transaction_order_by {
|
|
|
27047
27289
|
recurringTemplate?: InputMaybe<transaction_order_by>;
|
|
27048
27290
|
recurringTemplateId?: InputMaybe<order_by>;
|
|
27049
27291
|
recurringTemplateInstances_aggregate?: InputMaybe<transaction_aggregate_order_by>;
|
|
27292
|
+
short_ref?: InputMaybe<order_by>;
|
|
27050
27293
|
source?: InputMaybe<source_order_by>;
|
|
27051
27294
|
sourceId?: InputMaybe<order_by>;
|
|
27052
27295
|
status?: InputMaybe<order_by>;
|
|
@@ -27107,6 +27350,8 @@ export type transaction_select_column =
|
|
|
27107
27350
|
/** column name */
|
|
27108
27351
|
| "recurringTemplateId"
|
|
27109
27352
|
/** column name */
|
|
27353
|
+
| "short_ref"
|
|
27354
|
+
/** column name */
|
|
27110
27355
|
| "sourceId"
|
|
27111
27356
|
/** column name */
|
|
27112
27357
|
| "status"
|
|
@@ -27138,6 +27383,8 @@ export interface transaction_set_input {
|
|
|
27138
27383
|
recurringFeeId?: InputMaybe<Scalars["uuid"]>;
|
|
27139
27384
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
27140
27385
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
27386
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27387
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
27141
27388
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
27142
27389
|
status?: InputMaybe<activeStatus_enum>;
|
|
27143
27390
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -27189,6 +27436,8 @@ export interface transaction_stream_cursor_value_input {
|
|
|
27189
27436
|
recurringFeeId?: InputMaybe<Scalars["uuid"]>;
|
|
27190
27437
|
recurringPattern?: InputMaybe<Scalars["jsonb"]>;
|
|
27191
27438
|
recurringTemplateId?: InputMaybe<Scalars["uuid"]>;
|
|
27439
|
+
/** Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type). */
|
|
27440
|
+
short_ref?: InputMaybe<Scalars["String"]>;
|
|
27192
27441
|
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
27193
27442
|
status?: InputMaybe<activeStatus_enum>;
|
|
27194
27443
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -27239,6 +27488,8 @@ export type transaction_update_column =
|
|
|
27239
27488
|
/** column name */
|
|
27240
27489
|
| "recurringTemplateId"
|
|
27241
27490
|
/** column name */
|
|
27491
|
+
| "short_ref"
|
|
27492
|
+
/** column name */
|
|
27242
27493
|
| "sourceId"
|
|
27243
27494
|
/** column name */
|
|
27244
27495
|
| "status"
|
|
@@ -35047,6 +35298,7 @@ export declare const generatedSchema: {
|
|
|
35047
35298
|
name: { __type: "String!" };
|
|
35048
35299
|
phone: { __type: "String" };
|
|
35049
35300
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35301
|
+
short_ref: { __type: "String" };
|
|
35050
35302
|
source: { __type: "source" };
|
|
35051
35303
|
sourceId: { __type: "uuid" };
|
|
35052
35304
|
status: { __type: "activeStatus_enum" };
|
|
@@ -35285,6 +35537,7 @@ export declare const generatedSchema: {
|
|
|
35285
35537
|
name: { __type: "String_comparison_exp" };
|
|
35286
35538
|
phone: { __type: "String_comparison_exp" };
|
|
35287
35539
|
pmsStatus: { __type: "activeStatus_enum_comparison_exp" };
|
|
35540
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
35288
35541
|
source: { __type: "source_bool_exp" };
|
|
35289
35542
|
sourceId: { __type: "uuid_comparison_exp" };
|
|
35290
35543
|
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
@@ -35325,6 +35578,7 @@ export declare const generatedSchema: {
|
|
|
35325
35578
|
name: { __type: "String" };
|
|
35326
35579
|
phone: { __type: "String" };
|
|
35327
35580
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35581
|
+
short_ref: { __type: "String" };
|
|
35328
35582
|
source: { __type: "source_obj_rel_insert_input" };
|
|
35329
35583
|
sourceId: { __type: "uuid" };
|
|
35330
35584
|
status: { __type: "activeStatus_enum" };
|
|
@@ -35348,6 +35602,7 @@ export declare const generatedSchema: {
|
|
|
35348
35602
|
id: { __type: "uuid" };
|
|
35349
35603
|
name: { __type: "String" };
|
|
35350
35604
|
phone: { __type: "String" };
|
|
35605
|
+
short_ref: { __type: "String" };
|
|
35351
35606
|
sourceId: { __type: "uuid" };
|
|
35352
35607
|
taxId: { __type: "String" };
|
|
35353
35608
|
tenantId: { __type: "uuid" };
|
|
@@ -35364,6 +35619,7 @@ export declare const generatedSchema: {
|
|
|
35364
35619
|
id: { __type: "uuid" };
|
|
35365
35620
|
name: { __type: "String" };
|
|
35366
35621
|
phone: { __type: "String" };
|
|
35622
|
+
short_ref: { __type: "String" };
|
|
35367
35623
|
sourceId: { __type: "uuid" };
|
|
35368
35624
|
taxId: { __type: "String" };
|
|
35369
35625
|
tenantId: { __type: "uuid" };
|
|
@@ -35403,6 +35659,7 @@ export declare const generatedSchema: {
|
|
|
35403
35659
|
name: { __type: "order_by" };
|
|
35404
35660
|
phone: { __type: "order_by" };
|
|
35405
35661
|
pmsStatus: { __type: "order_by" };
|
|
35662
|
+
short_ref: { __type: "order_by" };
|
|
35406
35663
|
source: { __type: "source_order_by" };
|
|
35407
35664
|
sourceId: { __type: "order_by" };
|
|
35408
35665
|
status: { __type: "order_by" };
|
|
@@ -35433,6 +35690,7 @@ export declare const generatedSchema: {
|
|
|
35433
35690
|
name: { __type: "String" };
|
|
35434
35691
|
phone: { __type: "String" };
|
|
35435
35692
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35693
|
+
short_ref: { __type: "String" };
|
|
35436
35694
|
sourceId: { __type: "uuid" };
|
|
35437
35695
|
status: { __type: "activeStatus_enum" };
|
|
35438
35696
|
taxId: { __type: "String" };
|
|
@@ -35458,6 +35716,7 @@ export declare const generatedSchema: {
|
|
|
35458
35716
|
name: { __type: "String" };
|
|
35459
35717
|
phone: { __type: "String" };
|
|
35460
35718
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
35719
|
+
short_ref: { __type: "String" };
|
|
35461
35720
|
sourceId: { __type: "uuid" };
|
|
35462
35721
|
status: { __type: "activeStatus_enum" };
|
|
35463
35722
|
taxId: { __type: "String" };
|
|
@@ -35634,13 +35893,16 @@ export declare const generatedSchema: {
|
|
|
35634
35893
|
app_id: { __type: "String!" };
|
|
35635
35894
|
description: { __type: "String" };
|
|
35636
35895
|
id: { __type: "uuid!" };
|
|
35896
|
+
is_public: { __type: "Boolean!" };
|
|
35637
35897
|
left_type: { __type: "String" };
|
|
35638
35898
|
mapping_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35639
35899
|
right_type: { __type: "String" };
|
|
35900
|
+
run_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35640
35901
|
setting_schema: { __type: "jsonb!"; __args: { path: "String" } };
|
|
35641
35902
|
title: { __type: "String!" };
|
|
35642
35903
|
type: { __type: "flow_type" };
|
|
35643
35904
|
uniqueRef: { __type: "String!" };
|
|
35905
|
+
use_global_mapping: { __type: "Boolean!" };
|
|
35644
35906
|
};
|
|
35645
35907
|
core_flow_aggregate: {
|
|
35646
35908
|
__typename: { __type: "String!" };
|
|
@@ -35648,8 +35910,26 @@ export declare const generatedSchema: {
|
|
|
35648
35910
|
nodes: { __type: "[core_flow!]!" };
|
|
35649
35911
|
};
|
|
35650
35912
|
core_flow_aggregate_bool_exp: {
|
|
35913
|
+
bool_and: { __type: "core_flow_aggregate_bool_exp_bool_and" };
|
|
35914
|
+
bool_or: { __type: "core_flow_aggregate_bool_exp_bool_or" };
|
|
35651
35915
|
count: { __type: "core_flow_aggregate_bool_exp_count" };
|
|
35652
35916
|
};
|
|
35917
|
+
core_flow_aggregate_bool_exp_bool_and: {
|
|
35918
|
+
arguments: {
|
|
35919
|
+
__type: "core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns!";
|
|
35920
|
+
};
|
|
35921
|
+
distinct: { __type: "Boolean" };
|
|
35922
|
+
filter: { __type: "core_flow_bool_exp" };
|
|
35923
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
35924
|
+
};
|
|
35925
|
+
core_flow_aggregate_bool_exp_bool_or: {
|
|
35926
|
+
arguments: {
|
|
35927
|
+
__type: "core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns!";
|
|
35928
|
+
};
|
|
35929
|
+
distinct: { __type: "Boolean" };
|
|
35930
|
+
filter: { __type: "core_flow_bool_exp" };
|
|
35931
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
35932
|
+
};
|
|
35653
35933
|
core_flow_aggregate_bool_exp_count: {
|
|
35654
35934
|
arguments: { __type: "[core_flow_select_column!]" };
|
|
35655
35935
|
distinct: { __type: "Boolean" };
|
|
@@ -35672,6 +35952,7 @@ export declare const generatedSchema: {
|
|
|
35672
35952
|
};
|
|
35673
35953
|
core_flow_append_input: {
|
|
35674
35954
|
mapping_schema: { __type: "jsonb" };
|
|
35955
|
+
run_schema: { __type: "jsonb" };
|
|
35675
35956
|
setting_schema: { __type: "jsonb" };
|
|
35676
35957
|
};
|
|
35677
35958
|
core_flow_arr_rel_insert_input: {
|
|
@@ -35685,37 +35966,46 @@ export declare const generatedSchema: {
|
|
|
35685
35966
|
app_id: { __type: "String_comparison_exp" };
|
|
35686
35967
|
description: { __type: "String_comparison_exp" };
|
|
35687
35968
|
id: { __type: "uuid_comparison_exp" };
|
|
35969
|
+
is_public: { __type: "Boolean_comparison_exp" };
|
|
35688
35970
|
left_type: { __type: "String_comparison_exp" };
|
|
35689
35971
|
mapping_schema: { __type: "jsonb_comparison_exp" };
|
|
35690
35972
|
right_type: { __type: "String_comparison_exp" };
|
|
35973
|
+
run_schema: { __type: "jsonb_comparison_exp" };
|
|
35691
35974
|
setting_schema: { __type: "jsonb_comparison_exp" };
|
|
35692
35975
|
title: { __type: "String_comparison_exp" };
|
|
35693
35976
|
type: { __type: "flow_type_comparison_exp" };
|
|
35694
35977
|
uniqueRef: { __type: "String_comparison_exp" };
|
|
35978
|
+
use_global_mapping: { __type: "Boolean_comparison_exp" };
|
|
35695
35979
|
};
|
|
35696
35980
|
core_flow_delete_at_path_input: {
|
|
35697
35981
|
mapping_schema: { __type: "[String!]" };
|
|
35982
|
+
run_schema: { __type: "[String!]" };
|
|
35698
35983
|
setting_schema: { __type: "[String!]" };
|
|
35699
35984
|
};
|
|
35700
35985
|
core_flow_delete_elem_input: {
|
|
35701
35986
|
mapping_schema: { __type: "Int" };
|
|
35987
|
+
run_schema: { __type: "Int" };
|
|
35702
35988
|
setting_schema: { __type: "Int" };
|
|
35703
35989
|
};
|
|
35704
35990
|
core_flow_delete_key_input: {
|
|
35705
35991
|
mapping_schema: { __type: "String" };
|
|
35992
|
+
run_schema: { __type: "String" };
|
|
35706
35993
|
setting_schema: { __type: "String" };
|
|
35707
35994
|
};
|
|
35708
35995
|
core_flow_insert_input: {
|
|
35709
35996
|
app_id: { __type: "String" };
|
|
35710
35997
|
description: { __type: "String" };
|
|
35711
35998
|
id: { __type: "uuid" };
|
|
35999
|
+
is_public: { __type: "Boolean" };
|
|
35712
36000
|
left_type: { __type: "String" };
|
|
35713
36001
|
mapping_schema: { __type: "jsonb" };
|
|
35714
36002
|
right_type: { __type: "String" };
|
|
36003
|
+
run_schema: { __type: "jsonb" };
|
|
35715
36004
|
setting_schema: { __type: "jsonb" };
|
|
35716
36005
|
title: { __type: "String" };
|
|
35717
36006
|
type: { __type: "flow_type" };
|
|
35718
36007
|
uniqueRef: { __type: "String" };
|
|
36008
|
+
use_global_mapping: { __type: "Boolean" };
|
|
35719
36009
|
};
|
|
35720
36010
|
core_flow_mapping: {
|
|
35721
36011
|
__typename: { __type: "String!" };
|
|
@@ -35723,11 +36013,12 @@ export declare const generatedSchema: {
|
|
|
35723
36013
|
account_id: { __type: "uuid" };
|
|
35724
36014
|
booking_channel: { __type: "booking_channel" };
|
|
35725
36015
|
booking_channel_id: { __type: "uuid" };
|
|
36016
|
+
connection_id: { __type: "uuid!" };
|
|
35726
36017
|
contact: { __type: "contact" };
|
|
35727
36018
|
contact_id: { __type: "uuid" };
|
|
35728
36019
|
createdAt: { __type: "timestamptz!" };
|
|
35729
|
-
flow: { __type: "core_flow
|
|
35730
|
-
flow_id: { __type: "uuid
|
|
36020
|
+
flow: { __type: "core_flow" };
|
|
36021
|
+
flow_id: { __type: "uuid" };
|
|
35731
36022
|
id: { __type: "uuid!" };
|
|
35732
36023
|
listing: { __type: "listing" };
|
|
35733
36024
|
listing_id: { __type: "uuid" };
|
|
@@ -35767,6 +36058,7 @@ export declare const generatedSchema: {
|
|
|
35767
36058
|
account_id: { __type: "uuid_comparison_exp" };
|
|
35768
36059
|
booking_channel: { __type: "booking_channel_bool_exp" };
|
|
35769
36060
|
booking_channel_id: { __type: "uuid_comparison_exp" };
|
|
36061
|
+
connection_id: { __type: "uuid_comparison_exp" };
|
|
35770
36062
|
contact: { __type: "contact_bool_exp" };
|
|
35771
36063
|
contact_id: { __type: "uuid_comparison_exp" };
|
|
35772
36064
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
@@ -35793,6 +36085,7 @@ export declare const generatedSchema: {
|
|
|
35793
36085
|
account_id: { __type: "uuid" };
|
|
35794
36086
|
booking_channel: { __type: "booking_channel_obj_rel_insert_input" };
|
|
35795
36087
|
booking_channel_id: { __type: "uuid" };
|
|
36088
|
+
connection_id: { __type: "uuid" };
|
|
35796
36089
|
contact: { __type: "contact_obj_rel_insert_input" };
|
|
35797
36090
|
contact_id: { __type: "uuid" };
|
|
35798
36091
|
createdAt: { __type: "timestamptz" };
|
|
@@ -35815,6 +36108,7 @@ export declare const generatedSchema: {
|
|
|
35815
36108
|
__typename: { __type: "String!" };
|
|
35816
36109
|
account_id: { __type: "uuid" };
|
|
35817
36110
|
booking_channel_id: { __type: "uuid" };
|
|
36111
|
+
connection_id: { __type: "uuid" };
|
|
35818
36112
|
contact_id: { __type: "uuid" };
|
|
35819
36113
|
createdAt: { __type: "timestamptz" };
|
|
35820
36114
|
flow_id: { __type: "uuid" };
|
|
@@ -35830,6 +36124,7 @@ export declare const generatedSchema: {
|
|
|
35830
36124
|
__typename: { __type: "String!" };
|
|
35831
36125
|
account_id: { __type: "uuid" };
|
|
35832
36126
|
booking_channel_id: { __type: "uuid" };
|
|
36127
|
+
connection_id: { __type: "uuid" };
|
|
35833
36128
|
contact_id: { __type: "uuid" };
|
|
35834
36129
|
createdAt: { __type: "timestamptz" };
|
|
35835
36130
|
flow_id: { __type: "uuid" };
|
|
@@ -35856,6 +36151,7 @@ export declare const generatedSchema: {
|
|
|
35856
36151
|
account_id: { __type: "order_by" };
|
|
35857
36152
|
booking_channel: { __type: "booking_channel_order_by" };
|
|
35858
36153
|
booking_channel_id: { __type: "order_by" };
|
|
36154
|
+
connection_id: { __type: "order_by" };
|
|
35859
36155
|
contact: { __type: "contact_order_by" };
|
|
35860
36156
|
contact_id: { __type: "order_by" };
|
|
35861
36157
|
createdAt: { __type: "order_by" };
|
|
@@ -35879,6 +36175,7 @@ export declare const generatedSchema: {
|
|
|
35879
36175
|
core_flow_mapping_set_input: {
|
|
35880
36176
|
account_id: { __type: "uuid" };
|
|
35881
36177
|
booking_channel_id: { __type: "uuid" };
|
|
36178
|
+
connection_id: { __type: "uuid" };
|
|
35882
36179
|
contact_id: { __type: "uuid" };
|
|
35883
36180
|
createdAt: { __type: "timestamptz" };
|
|
35884
36181
|
flow_id: { __type: "uuid" };
|
|
@@ -35898,6 +36195,7 @@ export declare const generatedSchema: {
|
|
|
35898
36195
|
core_flow_mapping_stream_cursor_value_input: {
|
|
35899
36196
|
account_id: { __type: "uuid" };
|
|
35900
36197
|
booking_channel_id: { __type: "uuid" };
|
|
36198
|
+
connection_id: { __type: "uuid" };
|
|
35901
36199
|
contact_id: { __type: "uuid" };
|
|
35902
36200
|
createdAt: { __type: "timestamptz" };
|
|
35903
36201
|
flow_id: { __type: "uuid" };
|
|
@@ -35979,30 +36277,37 @@ export declare const generatedSchema: {
|
|
|
35979
36277
|
app_id: { __type: "order_by" };
|
|
35980
36278
|
description: { __type: "order_by" };
|
|
35981
36279
|
id: { __type: "order_by" };
|
|
36280
|
+
is_public: { __type: "order_by" };
|
|
35982
36281
|
left_type: { __type: "order_by" };
|
|
35983
36282
|
mapping_schema: { __type: "order_by" };
|
|
35984
36283
|
right_type: { __type: "order_by" };
|
|
36284
|
+
run_schema: { __type: "order_by" };
|
|
35985
36285
|
setting_schema: { __type: "order_by" };
|
|
35986
36286
|
title: { __type: "order_by" };
|
|
35987
36287
|
type: { __type: "order_by" };
|
|
35988
36288
|
uniqueRef: { __type: "order_by" };
|
|
36289
|
+
use_global_mapping: { __type: "order_by" };
|
|
35989
36290
|
};
|
|
35990
36291
|
core_flow_pk_columns_input: { id: { __type: "uuid!" } };
|
|
35991
36292
|
core_flow_prepend_input: {
|
|
35992
36293
|
mapping_schema: { __type: "jsonb" };
|
|
36294
|
+
run_schema: { __type: "jsonb" };
|
|
35993
36295
|
setting_schema: { __type: "jsonb" };
|
|
35994
36296
|
};
|
|
35995
36297
|
core_flow_set_input: {
|
|
35996
36298
|
app_id: { __type: "String" };
|
|
35997
36299
|
description: { __type: "String" };
|
|
35998
36300
|
id: { __type: "uuid" };
|
|
36301
|
+
is_public: { __type: "Boolean" };
|
|
35999
36302
|
left_type: { __type: "String" };
|
|
36000
36303
|
mapping_schema: { __type: "jsonb" };
|
|
36001
36304
|
right_type: { __type: "String" };
|
|
36305
|
+
run_schema: { __type: "jsonb" };
|
|
36002
36306
|
setting_schema: { __type: "jsonb" };
|
|
36003
36307
|
title: { __type: "String" };
|
|
36004
36308
|
type: { __type: "flow_type" };
|
|
36005
36309
|
uniqueRef: { __type: "String" };
|
|
36310
|
+
use_global_mapping: { __type: "Boolean" };
|
|
36006
36311
|
};
|
|
36007
36312
|
core_flow_setting: {
|
|
36008
36313
|
__typename: { __type: "String!" };
|
|
@@ -36214,13 +36519,16 @@ export declare const generatedSchema: {
|
|
|
36214
36519
|
app_id: { __type: "String" };
|
|
36215
36520
|
description: { __type: "String" };
|
|
36216
36521
|
id: { __type: "uuid" };
|
|
36522
|
+
is_public: { __type: "Boolean" };
|
|
36217
36523
|
left_type: { __type: "String" };
|
|
36218
36524
|
mapping_schema: { __type: "jsonb" };
|
|
36219
36525
|
right_type: { __type: "String" };
|
|
36526
|
+
run_schema: { __type: "jsonb" };
|
|
36220
36527
|
setting_schema: { __type: "jsonb" };
|
|
36221
36528
|
title: { __type: "String" };
|
|
36222
36529
|
type: { __type: "flow_type" };
|
|
36223
36530
|
uniqueRef: { __type: "String" };
|
|
36531
|
+
use_global_mapping: { __type: "Boolean" };
|
|
36224
36532
|
};
|
|
36225
36533
|
core_flow_updates: {
|
|
36226
36534
|
_append: { __type: "core_flow_append_input" };
|
|
@@ -39025,6 +39333,7 @@ export declare const generatedSchema: {
|
|
|
39025
39333
|
where: "setting_bool_exp";
|
|
39026
39334
|
};
|
|
39027
39335
|
};
|
|
39336
|
+
short_ref: { __type: "String" };
|
|
39028
39337
|
source: { __type: "source" };
|
|
39029
39338
|
sourceId: { __type: "uuid" };
|
|
39030
39339
|
status: { __type: "activeStatus_enum" };
|
|
@@ -39780,6 +40089,7 @@ export declare const generatedSchema: {
|
|
|
39780
40089
|
settingsRight: { __type: "setting_bool_exp" };
|
|
39781
40090
|
settingsRight_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
39782
40091
|
settings_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
40092
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
39783
40093
|
source: { __type: "source_bool_exp" };
|
|
39784
40094
|
sourceId: { __type: "uuid_comparison_exp" };
|
|
39785
40095
|
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
@@ -40494,6 +40804,7 @@ export declare const generatedSchema: {
|
|
|
40494
40804
|
settings: { __type: "setting_arr_rel_insert_input" };
|
|
40495
40805
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
40496
40806
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
40807
|
+
short_ref: { __type: "String" };
|
|
40497
40808
|
source: { __type: "source_obj_rel_insert_input" };
|
|
40498
40809
|
sourceId: { __type: "uuid" };
|
|
40499
40810
|
status: { __type: "activeStatus_enum" };
|
|
@@ -40525,6 +40836,7 @@ export declare const generatedSchema: {
|
|
|
40525
40836
|
imageUri: { __type: "String" };
|
|
40526
40837
|
name: { __type: "String" };
|
|
40527
40838
|
ownerContactId: { __type: "uuid" };
|
|
40839
|
+
short_ref: { __type: "String" };
|
|
40528
40840
|
sourceId: { __type: "uuid" };
|
|
40529
40841
|
tenantId: { __type: "uuid" };
|
|
40530
40842
|
title: { __type: "String" };
|
|
@@ -40551,6 +40863,7 @@ export declare const generatedSchema: {
|
|
|
40551
40863
|
imageUri: { __type: "order_by" };
|
|
40552
40864
|
name: { __type: "order_by" };
|
|
40553
40865
|
ownerContactId: { __type: "order_by" };
|
|
40866
|
+
short_ref: { __type: "order_by" };
|
|
40554
40867
|
sourceId: { __type: "order_by" };
|
|
40555
40868
|
tenantId: { __type: "order_by" };
|
|
40556
40869
|
title: { __type: "order_by" };
|
|
@@ -40578,6 +40891,7 @@ export declare const generatedSchema: {
|
|
|
40578
40891
|
imageUri: { __type: "String" };
|
|
40579
40892
|
name: { __type: "String" };
|
|
40580
40893
|
ownerContactId: { __type: "uuid" };
|
|
40894
|
+
short_ref: { __type: "String" };
|
|
40581
40895
|
sourceId: { __type: "uuid" };
|
|
40582
40896
|
tenantId: { __type: "uuid" };
|
|
40583
40897
|
title: { __type: "String" };
|
|
@@ -40604,6 +40918,7 @@ export declare const generatedSchema: {
|
|
|
40604
40918
|
imageUri: { __type: "order_by" };
|
|
40605
40919
|
name: { __type: "order_by" };
|
|
40606
40920
|
ownerContactId: { __type: "order_by" };
|
|
40921
|
+
short_ref: { __type: "order_by" };
|
|
40607
40922
|
sourceId: { __type: "order_by" };
|
|
40608
40923
|
tenantId: { __type: "order_by" };
|
|
40609
40924
|
title: { __type: "order_by" };
|
|
@@ -40674,6 +40989,7 @@ export declare const generatedSchema: {
|
|
|
40674
40989
|
settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
|
|
40675
40990
|
settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
|
|
40676
40991
|
settings_aggregate: { __type: "setting_aggregate_order_by" };
|
|
40992
|
+
short_ref: { __type: "order_by" };
|
|
40677
40993
|
source: { __type: "source_order_by" };
|
|
40678
40994
|
sourceId: { __type: "order_by" };
|
|
40679
40995
|
status: { __type: "order_by" };
|
|
@@ -41082,6 +41398,7 @@ export declare const generatedSchema: {
|
|
|
41082
41398
|
ownerContactId: { __type: "uuid" };
|
|
41083
41399
|
pmsAddressData: { __type: "jsonb" };
|
|
41084
41400
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
41401
|
+
short_ref: { __type: "String" };
|
|
41085
41402
|
sourceId: { __type: "uuid" };
|
|
41086
41403
|
status: { __type: "activeStatus_enum" };
|
|
41087
41404
|
tenantId: { __type: "uuid" };
|
|
@@ -41158,6 +41475,7 @@ export declare const generatedSchema: {
|
|
|
41158
41475
|
ownerContactId: { __type: "uuid" };
|
|
41159
41476
|
pmsAddressData: { __type: "jsonb" };
|
|
41160
41477
|
pmsStatus: { __type: "activeStatus_enum" };
|
|
41478
|
+
short_ref: { __type: "String" };
|
|
41161
41479
|
sourceId: { __type: "uuid" };
|
|
41162
41480
|
status: { __type: "activeStatus_enum" };
|
|
41163
41481
|
tenantId: { __type: "uuid" };
|
|
@@ -56344,6 +56662,7 @@ export declare const generatedSchema: {
|
|
|
56344
56662
|
};
|
|
56345
56663
|
};
|
|
56346
56664
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
56665
|
+
general_ledger_status: { __type: "activeStatus_enum!" };
|
|
56347
56666
|
guestName: { __type: "String" };
|
|
56348
56667
|
guests: { __type: "Int" };
|
|
56349
56668
|
id: { __type: "uuid!" };
|
|
@@ -56372,6 +56691,7 @@ export declare const generatedSchema: {
|
|
|
56372
56691
|
listingConnection: { __type: "listing_connection" };
|
|
56373
56692
|
listingConnectionId: { __type: "uuid" };
|
|
56374
56693
|
listingId: { __type: "uuid" };
|
|
56694
|
+
manager_cent_total: { __type: "bigint" };
|
|
56375
56695
|
matchPaymentCustomerRef: { __type: "String" };
|
|
56376
56696
|
members: {
|
|
56377
56697
|
__type: "[tenant_user!]!";
|
|
@@ -56417,6 +56737,7 @@ export declare const generatedSchema: {
|
|
|
56417
56737
|
where: "owner_statement_line_bool_exp";
|
|
56418
56738
|
};
|
|
56419
56739
|
};
|
|
56740
|
+
owners_cent_total: { __type: "bigint" };
|
|
56420
56741
|
paidStatus: { __type: "paidStatus_enum" };
|
|
56421
56742
|
paymentLines: {
|
|
56422
56743
|
__type: "[payment_line!]!";
|
|
@@ -56500,6 +56821,7 @@ export declare const generatedSchema: {
|
|
|
56500
56821
|
where: "setting_bool_exp";
|
|
56501
56822
|
};
|
|
56502
56823
|
};
|
|
56824
|
+
short_ref: { __type: "String" };
|
|
56503
56825
|
similarReservations: {
|
|
56504
56826
|
__type: "[reservation!]!";
|
|
56505
56827
|
__args: {
|
|
@@ -56543,6 +56865,7 @@ export declare const generatedSchema: {
|
|
|
56543
56865
|
};
|
|
56544
56866
|
};
|
|
56545
56867
|
status: { __type: "reservation_status_enum" };
|
|
56868
|
+
tax_cent_total: { __type: "bigint" };
|
|
56546
56869
|
tenant: { __type: "tenant" };
|
|
56547
56870
|
tenantId: { __type: "uuid" };
|
|
56548
56871
|
transactionLines: {
|
|
@@ -57191,7 +57514,10 @@ export declare const generatedSchema: {
|
|
|
57191
57514
|
centService: { __type: "Float" };
|
|
57192
57515
|
centTotal: { __type: "Float" };
|
|
57193
57516
|
guests: { __type: "Float" };
|
|
57517
|
+
manager_cent_total: { __type: "Float" };
|
|
57194
57518
|
nights: { __type: "Float" };
|
|
57519
|
+
owners_cent_total: { __type: "Float" };
|
|
57520
|
+
tax_cent_total: { __type: "Float" };
|
|
57195
57521
|
};
|
|
57196
57522
|
reservation_avg_order_by: {
|
|
57197
57523
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57205,7 +57531,10 @@ export declare const generatedSchema: {
|
|
|
57205
57531
|
centService: { __type: "order_by" };
|
|
57206
57532
|
centTotal: { __type: "order_by" };
|
|
57207
57533
|
guests: { __type: "order_by" };
|
|
57534
|
+
manager_cent_total: { __type: "order_by" };
|
|
57208
57535
|
nights: { __type: "order_by" };
|
|
57536
|
+
owners_cent_total: { __type: "order_by" };
|
|
57537
|
+
tax_cent_total: { __type: "order_by" };
|
|
57209
57538
|
};
|
|
57210
57539
|
reservation_bool_exp: {
|
|
57211
57540
|
_and: { __type: "[reservation_bool_exp!]" };
|
|
@@ -57244,6 +57573,7 @@ export declare const generatedSchema: {
|
|
|
57244
57573
|
files: { __type: "file_storage_bool_exp" };
|
|
57245
57574
|
files_aggregate: { __type: "file_storage_aggregate_bool_exp" };
|
|
57246
57575
|
generalLedgerPostingAt: { __type: "timestamptz_comparison_exp" };
|
|
57576
|
+
general_ledger_status: { __type: "activeStatus_enum_comparison_exp" };
|
|
57247
57577
|
guestName: { __type: "String_comparison_exp" };
|
|
57248
57578
|
guests: { __type: "Int_comparison_exp" };
|
|
57249
57579
|
id: { __type: "uuid_comparison_exp" };
|
|
@@ -57254,6 +57584,7 @@ export declare const generatedSchema: {
|
|
|
57254
57584
|
listingConnection: { __type: "listing_connection_bool_exp" };
|
|
57255
57585
|
listingConnectionId: { __type: "uuid_comparison_exp" };
|
|
57256
57586
|
listingId: { __type: "uuid_comparison_exp" };
|
|
57587
|
+
manager_cent_total: { __type: "bigint_comparison_exp" };
|
|
57257
57588
|
matchPaymentCustomerRef: { __type: "String_comparison_exp" };
|
|
57258
57589
|
members: { __type: "tenant_user_bool_exp" };
|
|
57259
57590
|
members_aggregate: { __type: "tenant_user_aggregate_bool_exp" };
|
|
@@ -57265,6 +57596,7 @@ export declare const generatedSchema: {
|
|
|
57265
57596
|
ownerStatementLines_aggregate: {
|
|
57266
57597
|
__type: "owner_statement_line_aggregate_bool_exp";
|
|
57267
57598
|
};
|
|
57599
|
+
owners_cent_total: { __type: "bigint_comparison_exp" };
|
|
57268
57600
|
paidStatus: { __type: "paidStatus_enum_comparison_exp" };
|
|
57269
57601
|
paymentLines: { __type: "payment_line_bool_exp" };
|
|
57270
57602
|
paymentLines_aggregate: { __type: "payment_line_aggregate_bool_exp" };
|
|
@@ -57276,6 +57608,7 @@ export declare const generatedSchema: {
|
|
|
57276
57608
|
settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
57277
57609
|
settingsRight: { __type: "setting_bool_exp" };
|
|
57278
57610
|
settingsRight_aggregate: { __type: "setting_aggregate_bool_exp" };
|
|
57611
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
57279
57612
|
similarReservations: { __type: "reservation_bool_exp" };
|
|
57280
57613
|
similarReservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
|
|
57281
57614
|
source: { __type: "source_bool_exp" };
|
|
@@ -57283,6 +57616,7 @@ export declare const generatedSchema: {
|
|
|
57283
57616
|
sources: { __type: "source_bool_exp" };
|
|
57284
57617
|
sources_aggregate: { __type: "source_aggregate_bool_exp" };
|
|
57285
57618
|
status: { __type: "reservation_status_enum_comparison_exp" };
|
|
57619
|
+
tax_cent_total: { __type: "bigint_comparison_exp" };
|
|
57286
57620
|
tenant: { __type: "tenant_bool_exp" };
|
|
57287
57621
|
tenantId: { __type: "uuid_comparison_exp" };
|
|
57288
57622
|
transactionLines: { __type: "transactionLine_bool_exp" };
|
|
@@ -57321,7 +57655,10 @@ export declare const generatedSchema: {
|
|
|
57321
57655
|
centService: { __type: "Int" };
|
|
57322
57656
|
centTotal: { __type: "bigint" };
|
|
57323
57657
|
guests: { __type: "Int" };
|
|
57658
|
+
manager_cent_total: { __type: "bigint" };
|
|
57324
57659
|
nights: { __type: "Int" };
|
|
57660
|
+
owners_cent_total: { __type: "bigint" };
|
|
57661
|
+
tax_cent_total: { __type: "bigint" };
|
|
57325
57662
|
};
|
|
57326
57663
|
reservation_insert_input: {
|
|
57327
57664
|
bookedAt: { __type: "timestamptz" };
|
|
@@ -57353,6 +57690,7 @@ export declare const generatedSchema: {
|
|
|
57353
57690
|
currency: { __type: "currency_enum" };
|
|
57354
57691
|
files: { __type: "file_storage_arr_rel_insert_input" };
|
|
57355
57692
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
57693
|
+
general_ledger_status: { __type: "activeStatus_enum" };
|
|
57356
57694
|
guestName: { __type: "String" };
|
|
57357
57695
|
guests: { __type: "Int" };
|
|
57358
57696
|
id: { __type: "uuid" };
|
|
@@ -57362,6 +57700,7 @@ export declare const generatedSchema: {
|
|
|
57362
57700
|
listingConnection: { __type: "listing_connection_obj_rel_insert_input" };
|
|
57363
57701
|
listingConnectionId: { __type: "uuid" };
|
|
57364
57702
|
listingId: { __type: "uuid" };
|
|
57703
|
+
manager_cent_total: { __type: "bigint" };
|
|
57365
57704
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57366
57705
|
members: { __type: "tenant_user_arr_rel_insert_input" };
|
|
57367
57706
|
metadata: { __type: "jsonb" };
|
|
@@ -57371,6 +57710,7 @@ export declare const generatedSchema: {
|
|
|
57371
57710
|
ownerStatementLines: {
|
|
57372
57711
|
__type: "owner_statement_line_arr_rel_insert_input";
|
|
57373
57712
|
};
|
|
57713
|
+
owners_cent_total: { __type: "bigint" };
|
|
57374
57714
|
paidStatus: { __type: "paidStatus_enum" };
|
|
57375
57715
|
paymentLines: { __type: "payment_line_arr_rel_insert_input" };
|
|
57376
57716
|
paymentMethod: { __type: "String" };
|
|
@@ -57378,11 +57718,13 @@ export declare const generatedSchema: {
|
|
|
57378
57718
|
relatedReservations: { __type: "reservation_arr_rel_insert_input" };
|
|
57379
57719
|
settingsLeft: { __type: "setting_arr_rel_insert_input" };
|
|
57380
57720
|
settingsRight: { __type: "setting_arr_rel_insert_input" };
|
|
57721
|
+
short_ref: { __type: "String" };
|
|
57381
57722
|
similarReservations: { __type: "reservation_arr_rel_insert_input" };
|
|
57382
57723
|
source: { __type: "source_obj_rel_insert_input" };
|
|
57383
57724
|
sourceId: { __type: "uuid" };
|
|
57384
57725
|
sources: { __type: "source_arr_rel_insert_input" };
|
|
57385
57726
|
status: { __type: "reservation_status_enum" };
|
|
57727
|
+
tax_cent_total: { __type: "bigint" };
|
|
57386
57728
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
57387
57729
|
tenantId: { __type: "uuid" };
|
|
57388
57730
|
transactionLines: { __type: "transactionLine_arr_rel_insert_input" };
|
|
@@ -57420,12 +57762,16 @@ export declare const generatedSchema: {
|
|
|
57420
57762
|
id: { __type: "uuid" };
|
|
57421
57763
|
listingConnectionId: { __type: "uuid" };
|
|
57422
57764
|
listingId: { __type: "uuid" };
|
|
57765
|
+
manager_cent_total: { __type: "bigint" };
|
|
57423
57766
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57424
57767
|
nights: { __type: "Int" };
|
|
57425
57768
|
otaReservationId: { __type: "uuid" };
|
|
57769
|
+
owners_cent_total: { __type: "bigint" };
|
|
57426
57770
|
paymentMethod: { __type: "String" };
|
|
57427
57771
|
pmsReferenceCode: { __type: "String" };
|
|
57772
|
+
short_ref: { __type: "String" };
|
|
57428
57773
|
sourceId: { __type: "uuid" };
|
|
57774
|
+
tax_cent_total: { __type: "bigint" };
|
|
57429
57775
|
tenantId: { __type: "uuid" };
|
|
57430
57776
|
uniqueRef: { __type: "String" };
|
|
57431
57777
|
uniqueRef2: { __type: "String" };
|
|
@@ -57459,12 +57805,16 @@ export declare const generatedSchema: {
|
|
|
57459
57805
|
id: { __type: "order_by" };
|
|
57460
57806
|
listingConnectionId: { __type: "order_by" };
|
|
57461
57807
|
listingId: { __type: "order_by" };
|
|
57808
|
+
manager_cent_total: { __type: "order_by" };
|
|
57462
57809
|
matchPaymentCustomerRef: { __type: "order_by" };
|
|
57463
57810
|
nights: { __type: "order_by" };
|
|
57464
57811
|
otaReservationId: { __type: "order_by" };
|
|
57812
|
+
owners_cent_total: { __type: "order_by" };
|
|
57465
57813
|
paymentMethod: { __type: "order_by" };
|
|
57466
57814
|
pmsReferenceCode: { __type: "order_by" };
|
|
57815
|
+
short_ref: { __type: "order_by" };
|
|
57467
57816
|
sourceId: { __type: "order_by" };
|
|
57817
|
+
tax_cent_total: { __type: "order_by" };
|
|
57468
57818
|
tenantId: { __type: "order_by" };
|
|
57469
57819
|
uniqueRef: { __type: "order_by" };
|
|
57470
57820
|
uniqueRef2: { __type: "order_by" };
|
|
@@ -57499,12 +57849,16 @@ export declare const generatedSchema: {
|
|
|
57499
57849
|
id: { __type: "uuid" };
|
|
57500
57850
|
listingConnectionId: { __type: "uuid" };
|
|
57501
57851
|
listingId: { __type: "uuid" };
|
|
57852
|
+
manager_cent_total: { __type: "bigint" };
|
|
57502
57853
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57503
57854
|
nights: { __type: "Int" };
|
|
57504
57855
|
otaReservationId: { __type: "uuid" };
|
|
57856
|
+
owners_cent_total: { __type: "bigint" };
|
|
57505
57857
|
paymentMethod: { __type: "String" };
|
|
57506
57858
|
pmsReferenceCode: { __type: "String" };
|
|
57859
|
+
short_ref: { __type: "String" };
|
|
57507
57860
|
sourceId: { __type: "uuid" };
|
|
57861
|
+
tax_cent_total: { __type: "bigint" };
|
|
57508
57862
|
tenantId: { __type: "uuid" };
|
|
57509
57863
|
uniqueRef: { __type: "String" };
|
|
57510
57864
|
uniqueRef2: { __type: "String" };
|
|
@@ -57538,12 +57892,16 @@ export declare const generatedSchema: {
|
|
|
57538
57892
|
id: { __type: "order_by" };
|
|
57539
57893
|
listingConnectionId: { __type: "order_by" };
|
|
57540
57894
|
listingId: { __type: "order_by" };
|
|
57895
|
+
manager_cent_total: { __type: "order_by" };
|
|
57541
57896
|
matchPaymentCustomerRef: { __type: "order_by" };
|
|
57542
57897
|
nights: { __type: "order_by" };
|
|
57543
57898
|
otaReservationId: { __type: "order_by" };
|
|
57899
|
+
owners_cent_total: { __type: "order_by" };
|
|
57544
57900
|
paymentMethod: { __type: "order_by" };
|
|
57545
57901
|
pmsReferenceCode: { __type: "order_by" };
|
|
57902
|
+
short_ref: { __type: "order_by" };
|
|
57546
57903
|
sourceId: { __type: "order_by" };
|
|
57904
|
+
tax_cent_total: { __type: "order_by" };
|
|
57547
57905
|
tenantId: { __type: "order_by" };
|
|
57548
57906
|
uniqueRef: { __type: "order_by" };
|
|
57549
57907
|
uniqueRef2: { __type: "order_by" };
|
|
@@ -57594,6 +57952,7 @@ export declare const generatedSchema: {
|
|
|
57594
57952
|
currency: { __type: "order_by" };
|
|
57595
57953
|
files_aggregate: { __type: "file_storage_aggregate_order_by" };
|
|
57596
57954
|
generalLedgerPostingAt: { __type: "order_by" };
|
|
57955
|
+
general_ledger_status: { __type: "order_by" };
|
|
57597
57956
|
guestName: { __type: "order_by" };
|
|
57598
57957
|
guests: { __type: "order_by" };
|
|
57599
57958
|
id: { __type: "order_by" };
|
|
@@ -57603,6 +57962,7 @@ export declare const generatedSchema: {
|
|
|
57603
57962
|
listingConnection: { __type: "listing_connection_order_by" };
|
|
57604
57963
|
listingConnectionId: { __type: "order_by" };
|
|
57605
57964
|
listingId: { __type: "order_by" };
|
|
57965
|
+
manager_cent_total: { __type: "order_by" };
|
|
57606
57966
|
matchPaymentCustomerRef: { __type: "order_by" };
|
|
57607
57967
|
members_aggregate: { __type: "tenant_user_aggregate_order_by" };
|
|
57608
57968
|
metadata: { __type: "order_by" };
|
|
@@ -57612,6 +57972,7 @@ export declare const generatedSchema: {
|
|
|
57612
57972
|
ownerStatementLines_aggregate: {
|
|
57613
57973
|
__type: "owner_statement_line_aggregate_order_by";
|
|
57614
57974
|
};
|
|
57975
|
+
owners_cent_total: { __type: "order_by" };
|
|
57615
57976
|
paidStatus: { __type: "order_by" };
|
|
57616
57977
|
paymentLines_aggregate: { __type: "payment_line_aggregate_order_by" };
|
|
57617
57978
|
paymentMethod: { __type: "order_by" };
|
|
@@ -57619,11 +57980,13 @@ export declare const generatedSchema: {
|
|
|
57619
57980
|
relatedReservations_aggregate: { __type: "reservation_aggregate_order_by" };
|
|
57620
57981
|
settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
|
|
57621
57982
|
settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
|
|
57983
|
+
short_ref: { __type: "order_by" };
|
|
57622
57984
|
similarReservations_aggregate: { __type: "reservation_aggregate_order_by" };
|
|
57623
57985
|
source: { __type: "source_order_by" };
|
|
57624
57986
|
sourceId: { __type: "order_by" };
|
|
57625
57987
|
sources_aggregate: { __type: "source_aggregate_order_by" };
|
|
57626
57988
|
status: { __type: "order_by" };
|
|
57989
|
+
tax_cent_total: { __type: "order_by" };
|
|
57627
57990
|
tenant: { __type: "tenant_order_by" };
|
|
57628
57991
|
tenantId: { __type: "order_by" };
|
|
57629
57992
|
transactionLines_aggregate: {
|
|
@@ -57663,21 +58026,26 @@ export declare const generatedSchema: {
|
|
|
57663
58026
|
createdAt: { __type: "timestamptz" };
|
|
57664
58027
|
currency: { __type: "currency_enum" };
|
|
57665
58028
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
58029
|
+
general_ledger_status: { __type: "activeStatus_enum" };
|
|
57666
58030
|
guestName: { __type: "String" };
|
|
57667
58031
|
guests: { __type: "Int" };
|
|
57668
58032
|
id: { __type: "uuid" };
|
|
57669
58033
|
lineMap: { __type: "jsonb" };
|
|
57670
58034
|
listingConnectionId: { __type: "uuid" };
|
|
57671
58035
|
listingId: { __type: "uuid" };
|
|
58036
|
+
manager_cent_total: { __type: "bigint" };
|
|
57672
58037
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57673
58038
|
metadata: { __type: "jsonb" };
|
|
57674
58039
|
nights: { __type: "Int" };
|
|
57675
58040
|
otaReservationId: { __type: "uuid" };
|
|
58041
|
+
owners_cent_total: { __type: "bigint" };
|
|
57676
58042
|
paidStatus: { __type: "paidStatus_enum" };
|
|
57677
58043
|
paymentMethod: { __type: "String" };
|
|
57678
58044
|
pmsReferenceCode: { __type: "String" };
|
|
58045
|
+
short_ref: { __type: "String" };
|
|
57679
58046
|
sourceId: { __type: "uuid" };
|
|
57680
58047
|
status: { __type: "reservation_status_enum" };
|
|
58048
|
+
tax_cent_total: { __type: "bigint" };
|
|
57681
58049
|
tenantId: { __type: "uuid" };
|
|
57682
58050
|
uniqueRef: { __type: "String" };
|
|
57683
58051
|
uniqueRef2: { __type: "String" };
|
|
@@ -57762,7 +58130,10 @@ export declare const generatedSchema: {
|
|
|
57762
58130
|
centService: { __type: "Float" };
|
|
57763
58131
|
centTotal: { __type: "Float" };
|
|
57764
58132
|
guests: { __type: "Float" };
|
|
58133
|
+
manager_cent_total: { __type: "Float" };
|
|
57765
58134
|
nights: { __type: "Float" };
|
|
58135
|
+
owners_cent_total: { __type: "Float" };
|
|
58136
|
+
tax_cent_total: { __type: "Float" };
|
|
57766
58137
|
};
|
|
57767
58138
|
reservation_stddev_order_by: {
|
|
57768
58139
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57776,7 +58147,10 @@ export declare const generatedSchema: {
|
|
|
57776
58147
|
centService: { __type: "order_by" };
|
|
57777
58148
|
centTotal: { __type: "order_by" };
|
|
57778
58149
|
guests: { __type: "order_by" };
|
|
58150
|
+
manager_cent_total: { __type: "order_by" };
|
|
57779
58151
|
nights: { __type: "order_by" };
|
|
58152
|
+
owners_cent_total: { __type: "order_by" };
|
|
58153
|
+
tax_cent_total: { __type: "order_by" };
|
|
57780
58154
|
};
|
|
57781
58155
|
reservation_stddev_pop_fields: {
|
|
57782
58156
|
__typename: { __type: "String!" };
|
|
@@ -57791,7 +58165,10 @@ export declare const generatedSchema: {
|
|
|
57791
58165
|
centService: { __type: "Float" };
|
|
57792
58166
|
centTotal: { __type: "Float" };
|
|
57793
58167
|
guests: { __type: "Float" };
|
|
58168
|
+
manager_cent_total: { __type: "Float" };
|
|
57794
58169
|
nights: { __type: "Float" };
|
|
58170
|
+
owners_cent_total: { __type: "Float" };
|
|
58171
|
+
tax_cent_total: { __type: "Float" };
|
|
57795
58172
|
};
|
|
57796
58173
|
reservation_stddev_pop_order_by: {
|
|
57797
58174
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57805,7 +58182,10 @@ export declare const generatedSchema: {
|
|
|
57805
58182
|
centService: { __type: "order_by" };
|
|
57806
58183
|
centTotal: { __type: "order_by" };
|
|
57807
58184
|
guests: { __type: "order_by" };
|
|
58185
|
+
manager_cent_total: { __type: "order_by" };
|
|
57808
58186
|
nights: { __type: "order_by" };
|
|
58187
|
+
owners_cent_total: { __type: "order_by" };
|
|
58188
|
+
tax_cent_total: { __type: "order_by" };
|
|
57809
58189
|
};
|
|
57810
58190
|
reservation_stddev_samp_fields: {
|
|
57811
58191
|
__typename: { __type: "String!" };
|
|
@@ -57820,7 +58200,10 @@ export declare const generatedSchema: {
|
|
|
57820
58200
|
centService: { __type: "Float" };
|
|
57821
58201
|
centTotal: { __type: "Float" };
|
|
57822
58202
|
guests: { __type: "Float" };
|
|
58203
|
+
manager_cent_total: { __type: "Float" };
|
|
57823
58204
|
nights: { __type: "Float" };
|
|
58205
|
+
owners_cent_total: { __type: "Float" };
|
|
58206
|
+
tax_cent_total: { __type: "Float" };
|
|
57824
58207
|
};
|
|
57825
58208
|
reservation_stddev_samp_order_by: {
|
|
57826
58209
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57834,7 +58217,10 @@ export declare const generatedSchema: {
|
|
|
57834
58217
|
centService: { __type: "order_by" };
|
|
57835
58218
|
centTotal: { __type: "order_by" };
|
|
57836
58219
|
guests: { __type: "order_by" };
|
|
58220
|
+
manager_cent_total: { __type: "order_by" };
|
|
57837
58221
|
nights: { __type: "order_by" };
|
|
58222
|
+
owners_cent_total: { __type: "order_by" };
|
|
58223
|
+
tax_cent_total: { __type: "order_by" };
|
|
57838
58224
|
};
|
|
57839
58225
|
reservation_stream_cursor_input: {
|
|
57840
58226
|
initial_value: { __type: "reservation_stream_cursor_value_input!" };
|
|
@@ -57864,21 +58250,26 @@ export declare const generatedSchema: {
|
|
|
57864
58250
|
createdAt: { __type: "timestamptz" };
|
|
57865
58251
|
currency: { __type: "currency_enum" };
|
|
57866
58252
|
generalLedgerPostingAt: { __type: "timestamptz" };
|
|
58253
|
+
general_ledger_status: { __type: "activeStatus_enum" };
|
|
57867
58254
|
guestName: { __type: "String" };
|
|
57868
58255
|
guests: { __type: "Int" };
|
|
57869
58256
|
id: { __type: "uuid" };
|
|
57870
58257
|
lineMap: { __type: "jsonb" };
|
|
57871
58258
|
listingConnectionId: { __type: "uuid" };
|
|
57872
58259
|
listingId: { __type: "uuid" };
|
|
58260
|
+
manager_cent_total: { __type: "bigint" };
|
|
57873
58261
|
matchPaymentCustomerRef: { __type: "String" };
|
|
57874
58262
|
metadata: { __type: "jsonb" };
|
|
57875
58263
|
nights: { __type: "Int" };
|
|
57876
58264
|
otaReservationId: { __type: "uuid" };
|
|
58265
|
+
owners_cent_total: { __type: "bigint" };
|
|
57877
58266
|
paidStatus: { __type: "paidStatus_enum" };
|
|
57878
58267
|
paymentMethod: { __type: "String" };
|
|
57879
58268
|
pmsReferenceCode: { __type: "String" };
|
|
58269
|
+
short_ref: { __type: "String" };
|
|
57880
58270
|
sourceId: { __type: "uuid" };
|
|
57881
58271
|
status: { __type: "reservation_status_enum" };
|
|
58272
|
+
tax_cent_total: { __type: "bigint" };
|
|
57882
58273
|
tenantId: { __type: "uuid" };
|
|
57883
58274
|
uniqueRef: { __type: "String" };
|
|
57884
58275
|
uniqueRef2: { __type: "String" };
|
|
@@ -57898,7 +58289,10 @@ export declare const generatedSchema: {
|
|
|
57898
58289
|
centService: { __type: "Int" };
|
|
57899
58290
|
centTotal: { __type: "bigint" };
|
|
57900
58291
|
guests: { __type: "Int" };
|
|
58292
|
+
manager_cent_total: { __type: "bigint" };
|
|
57901
58293
|
nights: { __type: "Int" };
|
|
58294
|
+
owners_cent_total: { __type: "bigint" };
|
|
58295
|
+
tax_cent_total: { __type: "bigint" };
|
|
57902
58296
|
};
|
|
57903
58297
|
reservation_sum_order_by: {
|
|
57904
58298
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57912,7 +58306,10 @@ export declare const generatedSchema: {
|
|
|
57912
58306
|
centService: { __type: "order_by" };
|
|
57913
58307
|
centTotal: { __type: "order_by" };
|
|
57914
58308
|
guests: { __type: "order_by" };
|
|
58309
|
+
manager_cent_total: { __type: "order_by" };
|
|
57915
58310
|
nights: { __type: "order_by" };
|
|
58311
|
+
owners_cent_total: { __type: "order_by" };
|
|
58312
|
+
tax_cent_total: { __type: "order_by" };
|
|
57916
58313
|
};
|
|
57917
58314
|
reservation_updates: {
|
|
57918
58315
|
_append: { __type: "reservation_append_input" };
|
|
@@ -57937,7 +58334,10 @@ export declare const generatedSchema: {
|
|
|
57937
58334
|
centService: { __type: "Float" };
|
|
57938
58335
|
centTotal: { __type: "Float" };
|
|
57939
58336
|
guests: { __type: "Float" };
|
|
58337
|
+
manager_cent_total: { __type: "Float" };
|
|
57940
58338
|
nights: { __type: "Float" };
|
|
58339
|
+
owners_cent_total: { __type: "Float" };
|
|
58340
|
+
tax_cent_total: { __type: "Float" };
|
|
57941
58341
|
};
|
|
57942
58342
|
reservation_var_pop_order_by: {
|
|
57943
58343
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57951,7 +58351,10 @@ export declare const generatedSchema: {
|
|
|
57951
58351
|
centService: { __type: "order_by" };
|
|
57952
58352
|
centTotal: { __type: "order_by" };
|
|
57953
58353
|
guests: { __type: "order_by" };
|
|
58354
|
+
manager_cent_total: { __type: "order_by" };
|
|
57954
58355
|
nights: { __type: "order_by" };
|
|
58356
|
+
owners_cent_total: { __type: "order_by" };
|
|
58357
|
+
tax_cent_total: { __type: "order_by" };
|
|
57955
58358
|
};
|
|
57956
58359
|
reservation_var_samp_fields: {
|
|
57957
58360
|
__typename: { __type: "String!" };
|
|
@@ -57966,7 +58369,10 @@ export declare const generatedSchema: {
|
|
|
57966
58369
|
centService: { __type: "Float" };
|
|
57967
58370
|
centTotal: { __type: "Float" };
|
|
57968
58371
|
guests: { __type: "Float" };
|
|
58372
|
+
manager_cent_total: { __type: "Float" };
|
|
57969
58373
|
nights: { __type: "Float" };
|
|
58374
|
+
owners_cent_total: { __type: "Float" };
|
|
58375
|
+
tax_cent_total: { __type: "Float" };
|
|
57970
58376
|
};
|
|
57971
58377
|
reservation_var_samp_order_by: {
|
|
57972
58378
|
centAccommodation: { __type: "order_by" };
|
|
@@ -57980,7 +58386,10 @@ export declare const generatedSchema: {
|
|
|
57980
58386
|
centService: { __type: "order_by" };
|
|
57981
58387
|
centTotal: { __type: "order_by" };
|
|
57982
58388
|
guests: { __type: "order_by" };
|
|
58389
|
+
manager_cent_total: { __type: "order_by" };
|
|
57983
58390
|
nights: { __type: "order_by" };
|
|
58391
|
+
owners_cent_total: { __type: "order_by" };
|
|
58392
|
+
tax_cent_total: { __type: "order_by" };
|
|
57984
58393
|
};
|
|
57985
58394
|
reservation_variance_fields: {
|
|
57986
58395
|
__typename: { __type: "String!" };
|
|
@@ -57995,7 +58404,10 @@ export declare const generatedSchema: {
|
|
|
57995
58404
|
centService: { __type: "Float" };
|
|
57996
58405
|
centTotal: { __type: "Float" };
|
|
57997
58406
|
guests: { __type: "Float" };
|
|
58407
|
+
manager_cent_total: { __type: "Float" };
|
|
57998
58408
|
nights: { __type: "Float" };
|
|
58409
|
+
owners_cent_total: { __type: "Float" };
|
|
58410
|
+
tax_cent_total: { __type: "Float" };
|
|
57999
58411
|
};
|
|
58000
58412
|
reservation_variance_order_by: {
|
|
58001
58413
|
centAccommodation: { __type: "order_by" };
|
|
@@ -58009,7 +58421,10 @@ export declare const generatedSchema: {
|
|
|
58009
58421
|
centService: { __type: "order_by" };
|
|
58010
58422
|
centTotal: { __type: "order_by" };
|
|
58011
58423
|
guests: { __type: "order_by" };
|
|
58424
|
+
manager_cent_total: { __type: "order_by" };
|
|
58012
58425
|
nights: { __type: "order_by" };
|
|
58426
|
+
owners_cent_total: { __type: "order_by" };
|
|
58427
|
+
tax_cent_total: { __type: "order_by" };
|
|
58013
58428
|
};
|
|
58014
58429
|
setting: {
|
|
58015
58430
|
__typename: { __type: "String!" };
|
|
@@ -65711,6 +66126,7 @@ export declare const generatedSchema: {
|
|
|
65711
66126
|
where: "owner_statement_bool_exp";
|
|
65712
66127
|
};
|
|
65713
66128
|
};
|
|
66129
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
65714
66130
|
owners: {
|
|
65715
66131
|
__type: "[owner!]!";
|
|
65716
66132
|
__args: {
|
|
@@ -66153,6 +66569,7 @@ export declare const generatedSchema: {
|
|
|
66153
66569
|
name: { __type: "String_comparison_exp" };
|
|
66154
66570
|
ownerStatements: { __type: "owner_statement_bool_exp" };
|
|
66155
66571
|
ownerStatements_aggregate: { __type: "owner_statement_aggregate_bool_exp" };
|
|
66572
|
+
owner_portal_show_draft_statements: { __type: "Boolean_comparison_exp" };
|
|
66156
66573
|
owners: { __type: "owner_bool_exp" };
|
|
66157
66574
|
owners_aggregate: { __type: "owner_aggregate_bool_exp" };
|
|
66158
66575
|
partner: { __type: "tenant_bool_exp" };
|
|
@@ -66275,6 +66692,7 @@ export declare const generatedSchema: {
|
|
|
66275
66692
|
monitorConnections: { __type: "monitorConnection_arr_rel_insert_input" };
|
|
66276
66693
|
name: { __type: "String" };
|
|
66277
66694
|
ownerStatements: { __type: "owner_statement_arr_rel_insert_input" };
|
|
66695
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
66278
66696
|
owners: { __type: "owner_arr_rel_insert_input" };
|
|
66279
66697
|
partner: { __type: "tenant_obj_rel_insert_input" };
|
|
66280
66698
|
partnerId: { __type: "uuid" };
|
|
@@ -66550,6 +66968,7 @@ export declare const generatedSchema: {
|
|
|
66550
66968
|
};
|
|
66551
66969
|
name: { __type: "order_by" };
|
|
66552
66970
|
ownerStatements_aggregate: { __type: "owner_statement_aggregate_order_by" };
|
|
66971
|
+
owner_portal_show_draft_statements: { __type: "order_by" };
|
|
66553
66972
|
owners_aggregate: { __type: "owner_aggregate_order_by" };
|
|
66554
66973
|
partner: { __type: "tenant_order_by" };
|
|
66555
66974
|
partnerId: { __type: "order_by" };
|
|
@@ -66626,6 +67045,7 @@ export declare const generatedSchema: {
|
|
|
66626
67045
|
logo: { __type: "String" };
|
|
66627
67046
|
longTermStayNights: { __type: "Int" };
|
|
66628
67047
|
name: { __type: "String" };
|
|
67048
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
66629
67049
|
partnerId: { __type: "uuid" };
|
|
66630
67050
|
setup: { __type: "jsonb" };
|
|
66631
67051
|
setupCompleted: { __type: "Boolean" };
|
|
@@ -66712,6 +67132,7 @@ export declare const generatedSchema: {
|
|
|
66712
67132
|
logo: { __type: "String" };
|
|
66713
67133
|
longTermStayNights: { __type: "Int" };
|
|
66714
67134
|
name: { __type: "String" };
|
|
67135
|
+
owner_portal_show_draft_statements: { __type: "Boolean" };
|
|
66715
67136
|
partnerId: { __type: "uuid" };
|
|
66716
67137
|
setup: { __type: "jsonb" };
|
|
66717
67138
|
setupCompleted: { __type: "Boolean" };
|
|
@@ -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" };
|
|
@@ -68383,6 +68807,8 @@ export declare const generatedSchema: {
|
|
|
68383
68807
|
__type: "accountAssignmentType_enum_comparison_exp";
|
|
68384
68808
|
};
|
|
68385
68809
|
accountId: { __type: "uuid_comparison_exp" };
|
|
68810
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum_comparison_exp" };
|
|
68811
|
+
applied_amount_tax_rate_id: { __type: "uuid_comparison_exp" };
|
|
68386
68812
|
centTotal: { __type: "Int_comparison_exp" };
|
|
68387
68813
|
contact: { __type: "contact_bool_exp" };
|
|
68388
68814
|
contactId: { __type: "uuid_comparison_exp" };
|
|
@@ -68428,6 +68854,8 @@ export declare const generatedSchema: {
|
|
|
68428
68854
|
account: { __type: "account_obj_rel_insert_input" };
|
|
68429
68855
|
accountAssignmentType: { __type: "accountAssignmentType_enum" };
|
|
68430
68856
|
accountId: { __type: "uuid" };
|
|
68857
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum" };
|
|
68858
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68431
68859
|
centTotal: { __type: "Int" };
|
|
68432
68860
|
contact: { __type: "contact_obj_rel_insert_input" };
|
|
68433
68861
|
contactId: { __type: "uuid" };
|
|
@@ -68463,6 +68891,7 @@ export declare const generatedSchema: {
|
|
|
68463
68891
|
transactionLine_max_fields: {
|
|
68464
68892
|
__typename: { __type: "String!" };
|
|
68465
68893
|
accountId: { __type: "uuid" };
|
|
68894
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68466
68895
|
centTotal: { __type: "Int" };
|
|
68467
68896
|
contactId: { __type: "uuid" };
|
|
68468
68897
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68484,6 +68913,7 @@ export declare const generatedSchema: {
|
|
|
68484
68913
|
};
|
|
68485
68914
|
transactionLine_max_order_by: {
|
|
68486
68915
|
accountId: { __type: "order_by" };
|
|
68916
|
+
applied_amount_tax_rate_id: { __type: "order_by" };
|
|
68487
68917
|
centTotal: { __type: "order_by" };
|
|
68488
68918
|
contactId: { __type: "order_by" };
|
|
68489
68919
|
createdAt: { __type: "order_by" };
|
|
@@ -68506,6 +68936,7 @@ export declare const generatedSchema: {
|
|
|
68506
68936
|
transactionLine_min_fields: {
|
|
68507
68937
|
__typename: { __type: "String!" };
|
|
68508
68938
|
accountId: { __type: "uuid" };
|
|
68939
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68509
68940
|
centTotal: { __type: "Int" };
|
|
68510
68941
|
contactId: { __type: "uuid" };
|
|
68511
68942
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68527,6 +68958,7 @@ export declare const generatedSchema: {
|
|
|
68527
68958
|
};
|
|
68528
68959
|
transactionLine_min_order_by: {
|
|
68529
68960
|
accountId: { __type: "order_by" };
|
|
68961
|
+
applied_amount_tax_rate_id: { __type: "order_by" };
|
|
68530
68962
|
centTotal: { __type: "order_by" };
|
|
68531
68963
|
contactId: { __type: "order_by" };
|
|
68532
68964
|
createdAt: { __type: "order_by" };
|
|
@@ -68564,6 +68996,8 @@ export declare const generatedSchema: {
|
|
|
68564
68996
|
account: { __type: "account_order_by" };
|
|
68565
68997
|
accountAssignmentType: { __type: "order_by" };
|
|
68566
68998
|
accountId: { __type: "order_by" };
|
|
68999
|
+
applied_amount_tax_behavior: { __type: "order_by" };
|
|
69000
|
+
applied_amount_tax_rate_id: { __type: "order_by" };
|
|
68567
69001
|
centTotal: { __type: "order_by" };
|
|
68568
69002
|
contact: { __type: "contact_order_by" };
|
|
68569
69003
|
contactId: { __type: "order_by" };
|
|
@@ -68602,6 +69036,8 @@ export declare const generatedSchema: {
|
|
|
68602
69036
|
transactionLine_set_input: {
|
|
68603
69037
|
accountAssignmentType: { __type: "accountAssignmentType_enum" };
|
|
68604
69038
|
accountId: { __type: "uuid" };
|
|
69039
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum" };
|
|
69040
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68605
69041
|
centTotal: { __type: "Int" };
|
|
68606
69042
|
contactId: { __type: "uuid" };
|
|
68607
69043
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68657,6 +69093,8 @@ export declare const generatedSchema: {
|
|
|
68657
69093
|
transactionLine_stream_cursor_value_input: {
|
|
68658
69094
|
accountAssignmentType: { __type: "accountAssignmentType_enum" };
|
|
68659
69095
|
accountId: { __type: "uuid" };
|
|
69096
|
+
applied_amount_tax_behavior: { __type: "taxBehavior_enum" };
|
|
69097
|
+
applied_amount_tax_rate_id: { __type: "uuid" };
|
|
68660
69098
|
centTotal: { __type: "Int" };
|
|
68661
69099
|
contactId: { __type: "uuid" };
|
|
68662
69100
|
createdAt: { __type: "timestamptz" };
|
|
@@ -68886,6 +69324,7 @@ export declare const generatedSchema: {
|
|
|
68886
69324
|
recurringTemplateInstances_aggregate: {
|
|
68887
69325
|
__type: "transaction_aggregate_bool_exp";
|
|
68888
69326
|
};
|
|
69327
|
+
short_ref: { __type: "String_comparison_exp" };
|
|
68889
69328
|
source: { __type: "source_bool_exp" };
|
|
68890
69329
|
sourceId: { __type: "uuid_comparison_exp" };
|
|
68891
69330
|
status: { __type: "activeStatus_enum_comparison_exp" };
|
|
@@ -68937,6 +69376,7 @@ export declare const generatedSchema: {
|
|
|
68937
69376
|
recurringTemplate: { __type: "transaction_obj_rel_insert_input" };
|
|
68938
69377
|
recurringTemplateId: { __type: "uuid" };
|
|
68939
69378
|
recurringTemplateInstances: { __type: "transaction_arr_rel_insert_input" };
|
|
69379
|
+
short_ref: { __type: "String" };
|
|
68940
69380
|
source: { __type: "source_obj_rel_insert_input" };
|
|
68941
69381
|
sourceId: { __type: "uuid" };
|
|
68942
69382
|
status: { __type: "activeStatus_enum" };
|
|
@@ -68962,6 +69402,7 @@ export declare const generatedSchema: {
|
|
|
68962
69402
|
paidAt: { __type: "timestamptz" };
|
|
68963
69403
|
recurringFeeId: { __type: "uuid" };
|
|
68964
69404
|
recurringTemplateId: { __type: "uuid" };
|
|
69405
|
+
short_ref: { __type: "String" };
|
|
68965
69406
|
sourceId: { __type: "uuid" };
|
|
68966
69407
|
tenantId: { __type: "uuid" };
|
|
68967
69408
|
uniqueRef: { __type: "String" };
|
|
@@ -68982,6 +69423,7 @@ export declare const generatedSchema: {
|
|
|
68982
69423
|
paidAt: { __type: "order_by" };
|
|
68983
69424
|
recurringFeeId: { __type: "order_by" };
|
|
68984
69425
|
recurringTemplateId: { __type: "order_by" };
|
|
69426
|
+
short_ref: { __type: "order_by" };
|
|
68985
69427
|
sourceId: { __type: "order_by" };
|
|
68986
69428
|
tenantId: { __type: "order_by" };
|
|
68987
69429
|
uniqueRef: { __type: "order_by" };
|
|
@@ -69003,6 +69445,7 @@ export declare const generatedSchema: {
|
|
|
69003
69445
|
paidAt: { __type: "timestamptz" };
|
|
69004
69446
|
recurringFeeId: { __type: "uuid" };
|
|
69005
69447
|
recurringTemplateId: { __type: "uuid" };
|
|
69448
|
+
short_ref: { __type: "String" };
|
|
69006
69449
|
sourceId: { __type: "uuid" };
|
|
69007
69450
|
tenantId: { __type: "uuid" };
|
|
69008
69451
|
uniqueRef: { __type: "String" };
|
|
@@ -69023,6 +69466,7 @@ export declare const generatedSchema: {
|
|
|
69023
69466
|
paidAt: { __type: "order_by" };
|
|
69024
69467
|
recurringFeeId: { __type: "order_by" };
|
|
69025
69468
|
recurringTemplateId: { __type: "order_by" };
|
|
69469
|
+
short_ref: { __type: "order_by" };
|
|
69026
69470
|
sourceId: { __type: "order_by" };
|
|
69027
69471
|
tenantId: { __type: "order_by" };
|
|
69028
69472
|
uniqueRef: { __type: "order_by" };
|
|
@@ -69074,6 +69518,7 @@ export declare const generatedSchema: {
|
|
|
69074
69518
|
recurringTemplateInstances_aggregate: {
|
|
69075
69519
|
__type: "transaction_aggregate_order_by";
|
|
69076
69520
|
};
|
|
69521
|
+
short_ref: { __type: "order_by" };
|
|
69077
69522
|
source: { __type: "source_order_by" };
|
|
69078
69523
|
sourceId: { __type: "order_by" };
|
|
69079
69524
|
status: { __type: "order_by" };
|
|
@@ -69106,6 +69551,7 @@ export declare const generatedSchema: {
|
|
|
69106
69551
|
recurringFeeId: { __type: "uuid" };
|
|
69107
69552
|
recurringPattern: { __type: "jsonb" };
|
|
69108
69553
|
recurringTemplateId: { __type: "uuid" };
|
|
69554
|
+
short_ref: { __type: "String" };
|
|
69109
69555
|
sourceId: { __type: "uuid" };
|
|
69110
69556
|
status: { __type: "activeStatus_enum" };
|
|
69111
69557
|
tenantId: { __type: "uuid" };
|
|
@@ -69151,6 +69597,7 @@ export declare const generatedSchema: {
|
|
|
69151
69597
|
recurringFeeId: { __type: "uuid" };
|
|
69152
69598
|
recurringPattern: { __type: "jsonb" };
|
|
69153
69599
|
recurringTemplateId: { __type: "uuid" };
|
|
69600
|
+
short_ref: { __type: "String" };
|
|
69154
69601
|
sourceId: { __type: "uuid" };
|
|
69155
69602
|
status: { __type: "activeStatus_enum" };
|
|
69156
69603
|
tenantId: { __type: "uuid" };
|
|
@@ -76814,6 +77261,10 @@ export interface contact {
|
|
|
76814
77261
|
name: ScalarsEnums["String"];
|
|
76815
77262
|
phone?: Maybe<ScalarsEnums["String"]>;
|
|
76816
77263
|
pmsStatus?: Maybe<ScalarsEnums["activeStatus_enum"]>;
|
|
77264
|
+
/**
|
|
77265
|
+
* Human-readable system ID (CNT-XXX-XXXX-XXX).
|
|
77266
|
+
*/
|
|
77267
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
76817
77268
|
/**
|
|
76818
77269
|
* An object relationship
|
|
76819
77270
|
*/
|
|
@@ -77141,6 +77592,10 @@ export interface contact_max_fields {
|
|
|
77141
77592
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77142
77593
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77143
77594
|
phone?: Maybe<ScalarsEnums["String"]>;
|
|
77595
|
+
/**
|
|
77596
|
+
* Human-readable system ID (CNT-XXX-XXXX-XXX).
|
|
77597
|
+
*/
|
|
77598
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
77144
77599
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77145
77600
|
taxId?: Maybe<ScalarsEnums["String"]>;
|
|
77146
77601
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -77161,6 +77616,10 @@ export interface contact_min_fields {
|
|
|
77161
77616
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77162
77617
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
77163
77618
|
phone?: Maybe<ScalarsEnums["String"]>;
|
|
77619
|
+
/**
|
|
77620
|
+
* Human-readable system ID (CNT-XXX-XXXX-XXX).
|
|
77621
|
+
*/
|
|
77622
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
77164
77623
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77165
77624
|
taxId?: Maybe<ScalarsEnums["String"]>;
|
|
77166
77625
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -77279,6 +77738,7 @@ export interface core_flow {
|
|
|
77279
77738
|
app_id: ScalarsEnums["String"];
|
|
77280
77739
|
description?: Maybe<ScalarsEnums["String"]>;
|
|
77281
77740
|
id: ScalarsEnums["uuid"];
|
|
77741
|
+
is_public: ScalarsEnums["Boolean"];
|
|
77282
77742
|
left_type?: Maybe<ScalarsEnums["String"]>;
|
|
77283
77743
|
mapping_schema: (args?: {
|
|
77284
77744
|
/**
|
|
@@ -77287,6 +77747,12 @@ export interface core_flow {
|
|
|
77287
77747
|
path?: Maybe<Scalars["String"]>;
|
|
77288
77748
|
}) => ScalarsEnums["jsonb"];
|
|
77289
77749
|
right_type?: Maybe<ScalarsEnums["String"]>;
|
|
77750
|
+
run_schema: (args?: {
|
|
77751
|
+
/**
|
|
77752
|
+
* JSON select path
|
|
77753
|
+
*/
|
|
77754
|
+
path?: Maybe<Scalars["String"]>;
|
|
77755
|
+
}) => ScalarsEnums["jsonb"];
|
|
77290
77756
|
setting_schema: (args?: {
|
|
77291
77757
|
/**
|
|
77292
77758
|
* JSON select path
|
|
@@ -77296,6 +77762,7 @@ export interface core_flow {
|
|
|
77296
77762
|
title: ScalarsEnums["String"];
|
|
77297
77763
|
type?: Maybe<ScalarsEnums["flow_type"]>;
|
|
77298
77764
|
uniqueRef: ScalarsEnums["String"];
|
|
77765
|
+
use_global_mapping: ScalarsEnums["Boolean"];
|
|
77299
77766
|
}
|
|
77300
77767
|
|
|
77301
77768
|
/**
|
|
@@ -77335,6 +77802,7 @@ export interface core_flow_mapping {
|
|
|
77335
77802
|
*/
|
|
77336
77803
|
booking_channel?: Maybe<booking_channel>;
|
|
77337
77804
|
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77805
|
+
connection_id: ScalarsEnums["uuid"];
|
|
77338
77806
|
/**
|
|
77339
77807
|
* An object relationship
|
|
77340
77808
|
*/
|
|
@@ -77344,8 +77812,8 @@ export interface core_flow_mapping {
|
|
|
77344
77812
|
/**
|
|
77345
77813
|
* An object relationship
|
|
77346
77814
|
*/
|
|
77347
|
-
flow
|
|
77348
|
-
flow_id
|
|
77815
|
+
flow?: Maybe<core_flow>;
|
|
77816
|
+
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77349
77817
|
id: ScalarsEnums["uuid"];
|
|
77350
77818
|
/**
|
|
77351
77819
|
* An object relationship
|
|
@@ -77406,6 +77874,7 @@ export interface core_flow_mapping_max_fields {
|
|
|
77406
77874
|
__typename?: "core_flow_mapping_max_fields";
|
|
77407
77875
|
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77408
77876
|
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77877
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77409
77878
|
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77410
77879
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77411
77880
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -77425,6 +77894,7 @@ export interface core_flow_mapping_min_fields {
|
|
|
77425
77894
|
__typename?: "core_flow_mapping_min_fields";
|
|
77426
77895
|
account_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77427
77896
|
booking_channel_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77897
|
+
connection_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77428
77898
|
contact_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77429
77899
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
77430
77900
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -80003,6 +80473,10 @@ export interface listing {
|
|
|
80003
80473
|
*/
|
|
80004
80474
|
where?: Maybe<setting_bool_exp>;
|
|
80005
80475
|
}) => setting_aggregate;
|
|
80476
|
+
/**
|
|
80477
|
+
* Human-readable system ID (LST-XXX-XXXX-XXX).
|
|
80478
|
+
*/
|
|
80479
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
80006
80480
|
/**
|
|
80007
80481
|
* An object relationship
|
|
80008
80482
|
*/
|
|
@@ -81237,6 +81711,10 @@ export interface listing_max_fields {
|
|
|
81237
81711
|
imageUri?: Maybe<ScalarsEnums["String"]>;
|
|
81238
81712
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
81239
81713
|
ownerContactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81714
|
+
/**
|
|
81715
|
+
* Human-readable system ID (LST-XXX-XXXX-XXX).
|
|
81716
|
+
*/
|
|
81717
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
81240
81718
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81241
81719
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81242
81720
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -81271,6 +81749,10 @@ export interface listing_min_fields {
|
|
|
81271
81749
|
imageUri?: Maybe<ScalarsEnums["String"]>;
|
|
81272
81750
|
name?: Maybe<ScalarsEnums["String"]>;
|
|
81273
81751
|
ownerContactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81752
|
+
/**
|
|
81753
|
+
* Human-readable system ID (LST-XXX-XXXX-XXX).
|
|
81754
|
+
*/
|
|
81755
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
81274
81756
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81275
81757
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
81276
81758
|
title?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -93257,6 +93739,7 @@ export interface reservation {
|
|
|
93257
93739
|
where?: Maybe<file_storage_bool_exp>;
|
|
93258
93740
|
}) => file_storage_aggregate;
|
|
93259
93741
|
generalLedgerPostingAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
93742
|
+
general_ledger_status: ScalarsEnums["activeStatus_enum"];
|
|
93260
93743
|
guestName?: Maybe<ScalarsEnums["String"]>;
|
|
93261
93744
|
guests?: Maybe<ScalarsEnums["Int"]>;
|
|
93262
93745
|
id: ScalarsEnums["uuid"];
|
|
@@ -93326,6 +93809,7 @@ export interface reservation {
|
|
|
93326
93809
|
listingConnection?: Maybe<listing_connection>;
|
|
93327
93810
|
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
93328
93811
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
93812
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
93329
93813
|
matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
|
|
93330
93814
|
/**
|
|
93331
93815
|
* An array relationship
|
|
@@ -93439,6 +93923,7 @@ export interface reservation {
|
|
|
93439
93923
|
*/
|
|
93440
93924
|
where?: Maybe<owner_statement_line_bool_exp>;
|
|
93441
93925
|
}) => owner_statement_line_aggregate;
|
|
93926
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
93442
93927
|
paidStatus?: Maybe<ScalarsEnums["paidStatus_enum"]>;
|
|
93443
93928
|
/**
|
|
93444
93929
|
* An array relationship
|
|
@@ -93642,6 +94127,10 @@ export interface reservation {
|
|
|
93642
94127
|
*/
|
|
93643
94128
|
where?: Maybe<setting_bool_exp>;
|
|
93644
94129
|
}) => setting_aggregate;
|
|
94130
|
+
/**
|
|
94131
|
+
* Human-readable system ID (RES-XXX-XXXX-XXX).
|
|
94132
|
+
*/
|
|
94133
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
93645
94134
|
/**
|
|
93646
94135
|
* An array relationship
|
|
93647
94136
|
*/
|
|
@@ -93748,6 +94237,7 @@ export interface reservation {
|
|
|
93748
94237
|
where?: Maybe<source_bool_exp>;
|
|
93749
94238
|
}) => source_aggregate;
|
|
93750
94239
|
status?: Maybe<ScalarsEnums["reservation_status_enum"]>;
|
|
94240
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
93751
94241
|
/**
|
|
93752
94242
|
* An object relationship
|
|
93753
94243
|
*/
|
|
@@ -94210,7 +94700,10 @@ export interface reservation_avg_fields {
|
|
|
94210
94700
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94211
94701
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94212
94702
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94703
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94213
94704
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94705
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94706
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94214
94707
|
}
|
|
94215
94708
|
|
|
94216
94709
|
/**
|
|
@@ -94245,12 +94738,19 @@ export interface reservation_max_fields {
|
|
|
94245
94738
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
94246
94739
|
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94247
94740
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94741
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94248
94742
|
matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
|
|
94249
94743
|
nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94250
94744
|
otaReservationId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94745
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94251
94746
|
paymentMethod?: Maybe<ScalarsEnums["String"]>;
|
|
94252
94747
|
pmsReferenceCode?: Maybe<ScalarsEnums["String"]>;
|
|
94748
|
+
/**
|
|
94749
|
+
* Human-readable system ID (RES-XXX-XXXX-XXX).
|
|
94750
|
+
*/
|
|
94751
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
94253
94752
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94753
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94254
94754
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94255
94755
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
94256
94756
|
uniqueRef2?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -94289,12 +94789,19 @@ export interface reservation_min_fields {
|
|
|
94289
94789
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
94290
94790
|
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94291
94791
|
listingId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94792
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94292
94793
|
matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
|
|
94293
94794
|
nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94294
94795
|
otaReservationId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94796
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94295
94797
|
paymentMethod?: Maybe<ScalarsEnums["String"]>;
|
|
94296
94798
|
pmsReferenceCode?: Maybe<ScalarsEnums["String"]>;
|
|
94799
|
+
/**
|
|
94800
|
+
* Human-readable system ID (RES-XXX-XXXX-XXX).
|
|
94801
|
+
*/
|
|
94802
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
94297
94803
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94804
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94298
94805
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
94299
94806
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
94300
94807
|
uniqueRef2?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -94393,7 +94900,10 @@ export interface reservation_stddev_fields {
|
|
|
94393
94900
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94394
94901
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94395
94902
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94903
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94396
94904
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94905
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94906
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94397
94907
|
}
|
|
94398
94908
|
|
|
94399
94909
|
/**
|
|
@@ -94412,7 +94922,10 @@ export interface reservation_stddev_pop_fields {
|
|
|
94412
94922
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94413
94923
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94414
94924
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94925
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94415
94926
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94927
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94928
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94416
94929
|
}
|
|
94417
94930
|
|
|
94418
94931
|
/**
|
|
@@ -94431,7 +94944,10 @@ export interface reservation_stddev_samp_fields {
|
|
|
94431
94944
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94432
94945
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94433
94946
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94947
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94434
94948
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94949
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94950
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94435
94951
|
}
|
|
94436
94952
|
|
|
94437
94953
|
/**
|
|
@@ -94450,7 +94966,10 @@ export interface reservation_sum_fields {
|
|
|
94450
94966
|
centService?: Maybe<ScalarsEnums["Int"]>;
|
|
94451
94967
|
centTotal?: Maybe<ScalarsEnums["bigint"]>;
|
|
94452
94968
|
guests?: Maybe<ScalarsEnums["Int"]>;
|
|
94969
|
+
manager_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94453
94970
|
nights?: Maybe<ScalarsEnums["Int"]>;
|
|
94971
|
+
owners_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94972
|
+
tax_cent_total?: Maybe<ScalarsEnums["bigint"]>;
|
|
94454
94973
|
}
|
|
94455
94974
|
|
|
94456
94975
|
/**
|
|
@@ -94469,7 +94988,10 @@ export interface reservation_var_pop_fields {
|
|
|
94469
94988
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94470
94989
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94471
94990
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
94991
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94472
94992
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
94993
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94994
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94473
94995
|
}
|
|
94474
94996
|
|
|
94475
94997
|
/**
|
|
@@ -94488,7 +95010,10 @@ export interface reservation_var_samp_fields {
|
|
|
94488
95010
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94489
95011
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94490
95012
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
95013
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94491
95014
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
95015
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
95016
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94492
95017
|
}
|
|
94493
95018
|
|
|
94494
95019
|
/**
|
|
@@ -94507,7 +95032,10 @@ export interface reservation_variance_fields {
|
|
|
94507
95032
|
centService?: Maybe<ScalarsEnums["Float"]>;
|
|
94508
95033
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
94509
95034
|
guests?: Maybe<ScalarsEnums["Float"]>;
|
|
95035
|
+
manager_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94510
95036
|
nights?: Maybe<ScalarsEnums["Float"]>;
|
|
95037
|
+
owners_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
95038
|
+
tax_cent_total?: Maybe<ScalarsEnums["Float"]>;
|
|
94511
95039
|
}
|
|
94512
95040
|
|
|
94513
95041
|
/**
|
|
@@ -100813,6 +101341,7 @@ export interface tenant {
|
|
|
100813
101341
|
*/
|
|
100814
101342
|
where?: Maybe<owner_statement_bool_exp>;
|
|
100815
101343
|
}) => owner_statement_aggregate;
|
|
101344
|
+
owner_portal_show_draft_statements?: Maybe<ScalarsEnums["Boolean"]>;
|
|
100816
101345
|
/**
|
|
100817
101346
|
* An array relationship
|
|
100818
101347
|
*/
|
|
@@ -102973,6 +103502,10 @@ export interface transaction {
|
|
|
102973
103502
|
*/
|
|
102974
103503
|
where?: Maybe<transaction_bool_exp>;
|
|
102975
103504
|
}) => transaction_aggregate;
|
|
103505
|
+
/**
|
|
103506
|
+
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103507
|
+
*/
|
|
103508
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
102976
103509
|
/**
|
|
102977
103510
|
* An object relationship
|
|
102978
103511
|
*/
|
|
@@ -103000,6 +103533,8 @@ export interface transactionLine {
|
|
|
103000
103533
|
account?: Maybe<account>;
|
|
103001
103534
|
accountAssignmentType?: Maybe<ScalarsEnums["accountAssignmentType_enum"]>;
|
|
103002
103535
|
accountId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103536
|
+
applied_amount_tax_behavior?: Maybe<ScalarsEnums["taxBehavior_enum"]>;
|
|
103537
|
+
applied_amount_tax_rate_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103003
103538
|
centTotal: ScalarsEnums["Int"];
|
|
103004
103539
|
/**
|
|
103005
103540
|
* An object relationship
|
|
@@ -103155,6 +103690,7 @@ export interface transactionLine_avg_fields {
|
|
|
103155
103690
|
export interface transactionLine_max_fields {
|
|
103156
103691
|
__typename?: "transactionLine_max_fields";
|
|
103157
103692
|
accountId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103693
|
+
applied_amount_tax_rate_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103158
103694
|
centTotal?: Maybe<ScalarsEnums["Int"]>;
|
|
103159
103695
|
contactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103160
103696
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -103181,6 +103717,7 @@ export interface transactionLine_max_fields {
|
|
|
103181
103717
|
export interface transactionLine_min_fields {
|
|
103182
103718
|
__typename?: "transactionLine_min_fields";
|
|
103183
103719
|
accountId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103720
|
+
applied_amount_tax_rate_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
103184
103721
|
centTotal?: Maybe<ScalarsEnums["Int"]>;
|
|
103185
103722
|
contactId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103186
103723
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -103397,6 +103934,10 @@ export interface transaction_max_fields {
|
|
|
103397
103934
|
paidAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
103398
103935
|
recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103399
103936
|
recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103937
|
+
/**
|
|
103938
|
+
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103939
|
+
*/
|
|
103940
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103400
103941
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103401
103942
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103402
103943
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -103422,6 +103963,10 @@ export interface transaction_min_fields {
|
|
|
103422
103963
|
paidAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
103423
103964
|
recurringFeeId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103424
103965
|
recurringTemplateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103966
|
+
/**
|
|
103967
|
+
* Human-readable system ID (EXP/DEP/TRF-XXX-XXXX-XXX depending on transaction.type).
|
|
103968
|
+
*/
|
|
103969
|
+
short_ref?: Maybe<ScalarsEnums["String"]>;
|
|
103425
103970
|
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103426
103971
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
103427
103972
|
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
@@ -107768,6 +108313,12 @@ export interface ScalarsEnums extends Scalars {
|
|
|
107768
108313
|
core_flow_mapping_select_column: core_flow_mapping_select_column | undefined;
|
|
107769
108314
|
core_flow_mapping_update_column: core_flow_mapping_update_column | undefined;
|
|
107770
108315
|
core_flow_select_column: core_flow_select_column | undefined;
|
|
108316
|
+
core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns:
|
|
108317
|
+
| core_flow_select_column_core_flow_aggregate_bool_exp_bool_and_arguments_columns
|
|
108318
|
+
| undefined;
|
|
108319
|
+
core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns:
|
|
108320
|
+
| core_flow_select_column_core_flow_aggregate_bool_exp_bool_or_arguments_columns
|
|
108321
|
+
| undefined;
|
|
107771
108322
|
core_flow_setting_constraint: core_flow_setting_constraint | undefined;
|
|
107772
108323
|
core_flow_setting_select_column: core_flow_setting_select_column | undefined;
|
|
107773
108324
|
core_flow_setting_update_column: core_flow_setting_update_column | undefined;
|