@vrplatform/graphql 1.1.19 → 1.1.21

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.
@@ -16491,6 +16491,8 @@ export interface payment_line_bool_exp {
16491
16491
  lineTypeAccounts_aggregate?: InputMaybe<accountReservationLineType_aggregate_bool_exp>;
16492
16492
  listing?: InputMaybe<listing_bool_exp>;
16493
16493
  listingId?: InputMaybe<uuid_comparison_exp>;
16494
+ matchReservationConfirmationCode?: InputMaybe<String_comparison_exp>;
16495
+ matchReservationStripeGuestRef?: InputMaybe<String_comparison_exp>;
16494
16496
  matchStatus?: InputMaybe<String_comparison_exp>;
16495
16497
  members?: InputMaybe<tenant_user_bool_exp>;
16496
16498
  members_aggregate?: InputMaybe<tenant_user_aggregate_bool_exp>;
@@ -16772,6 +16774,8 @@ export interface payment_line_insert_input {
16772
16774
  lineTypeAccounts?: InputMaybe<accountReservationLineType_arr_rel_insert_input>;
16773
16775
  listing?: InputMaybe<listing_obj_rel_insert_input>;
16774
16776
  listingId?: InputMaybe<Scalars["uuid"]>;
16777
+ matchReservationConfirmationCode?: InputMaybe<Scalars["String"]>;
16778
+ matchReservationStripeGuestRef?: InputMaybe<Scalars["String"]>;
16775
16779
  members?: InputMaybe<tenant_user_arr_rel_insert_input>;
16776
16780
  metadata?: InputMaybe<Scalars["jsonb"]>;
16777
16781
  originCentTotal?: InputMaybe<Scalars["bigint"]>;
@@ -16806,6 +16810,8 @@ export interface payment_line_max_order_by {
16806
16810
  id?: InputMaybe<order_by>;
16807
16811
  lineId?: InputMaybe<order_by>;
16808
16812
  listingId?: InputMaybe<order_by>;
16813
+ matchReservationConfirmationCode?: InputMaybe<order_by>;
16814
+ matchReservationStripeGuestRef?: InputMaybe<order_by>;
16809
16815
  matchStatus?: InputMaybe<order_by>;
16810
16816
  originCentTotal?: InputMaybe<order_by>;
16811
16817
  originCurrency?: InputMaybe<order_by>;
@@ -16831,6 +16837,8 @@ export interface payment_line_min_order_by {
16831
16837
  id?: InputMaybe<order_by>;
16832
16838
  lineId?: InputMaybe<order_by>;
16833
16839
  listingId?: InputMaybe<order_by>;
16840
+ matchReservationConfirmationCode?: InputMaybe<order_by>;
16841
+ matchReservationStripeGuestRef?: InputMaybe<order_by>;
16834
16842
  matchStatus?: InputMaybe<order_by>;
16835
16843
  originCentTotal?: InputMaybe<order_by>;
16836
16844
  originCurrency?: InputMaybe<order_by>;
@@ -16878,6 +16886,8 @@ export interface payment_line_order_by {
16878
16886
  lineTypeAccounts_aggregate?: InputMaybe<accountReservationLineType_aggregate_order_by>;
16879
16887
  listing?: InputMaybe<listing_order_by>;
16880
16888
  listingId?: InputMaybe<order_by>;
16889
+ matchReservationConfirmationCode?: InputMaybe<order_by>;
16890
+ matchReservationStripeGuestRef?: InputMaybe<order_by>;
16881
16891
  matchStatus?: InputMaybe<order_by>;
16882
16892
  members_aggregate?: InputMaybe<tenant_user_aggregate_order_by>;
16883
16893
  metadata?: InputMaybe<order_by>;
@@ -16932,6 +16942,10 @@ export type payment_line_select_column =
16932
16942
  /** column name */
16933
16943
  | "listingId"
16934
16944
  /** column name */
16945
+ | "matchReservationConfirmationCode"
16946
+ /** column name */
16947
+ | "matchReservationStripeGuestRef"
16948
+ /** column name */
16935
16949
  | "matchStatus"
16936
16950
  /** column name */
16937
16951
  | "metadata"
@@ -16984,6 +16998,8 @@ export interface payment_line_set_input {
16984
16998
  id?: InputMaybe<Scalars["uuid"]>;
16985
16999
  lineId?: InputMaybe<Scalars["uuid"]>;
16986
17000
  listingId?: InputMaybe<Scalars["uuid"]>;
17001
+ matchReservationConfirmationCode?: InputMaybe<Scalars["String"]>;
17002
+ matchReservationStripeGuestRef?: InputMaybe<Scalars["String"]>;
16987
17003
  metadata?: InputMaybe<Scalars["jsonb"]>;
16988
17004
  originCentTotal?: InputMaybe<Scalars["bigint"]>;
16989
17005
  originCurrency?: InputMaybe<Scalars["String"]>;
@@ -17040,6 +17056,8 @@ export interface payment_line_stream_cursor_value_input {
17040
17056
  id?: InputMaybe<Scalars["uuid"]>;
17041
17057
  lineId?: InputMaybe<Scalars["uuid"]>;
17042
17058
  listingId?: InputMaybe<Scalars["uuid"]>;
17059
+ matchReservationConfirmationCode?: InputMaybe<Scalars["String"]>;
17060
+ matchReservationStripeGuestRef?: InputMaybe<Scalars["String"]>;
17043
17061
  matchStatus?: InputMaybe<Scalars["String"]>;
17044
17062
  metadata?: InputMaybe<Scalars["jsonb"]>;
17045
17063
  originCentTotal?: InputMaybe<Scalars["bigint"]>;
@@ -17084,6 +17102,10 @@ export type payment_line_update_column =
17084
17102
  /** column name */
17085
17103
  | "listingId"
17086
17104
  /** column name */
17105
+ | "matchReservationConfirmationCode"
17106
+ /** column name */
17107
+ | "matchReservationStripeGuestRef"
17108
+ /** column name */
17087
17109
  | "metadata"
17088
17110
  /** column name */
17089
17111
  | "originCentTotal"
@@ -19535,6 +19557,7 @@ export interface reservation_bool_exp {
19535
19557
  listingConnection?: InputMaybe<listing_connection_bool_exp>;
19536
19558
  listingConnectionId?: InputMaybe<uuid_comparison_exp>;
19537
19559
  listingId?: InputMaybe<uuid_comparison_exp>;
19560
+ matchPaymentCustomerRef?: InputMaybe<String_comparison_exp>;
19538
19561
  members?: InputMaybe<tenant_user_bool_exp>;
19539
19562
  members_aggregate?: InputMaybe<tenant_user_aggregate_bool_exp>;
19540
19563
  metadata?: InputMaybe<jsonb_comparison_exp>;
@@ -19657,6 +19680,7 @@ export interface reservation_insert_input {
19657
19680
  listingConnection?: InputMaybe<listing_connection_obj_rel_insert_input>;
19658
19681
  listingConnectionId?: InputMaybe<Scalars["uuid"]>;
19659
19682
  listingId?: InputMaybe<Scalars["uuid"]>;
19683
+ matchPaymentCustomerRef?: InputMaybe<Scalars["String"]>;
19660
19684
  members?: InputMaybe<tenant_user_arr_rel_insert_input>;
19661
19685
  metadata?: InputMaybe<Scalars["jsonb"]>;
19662
19686
  nights?: InputMaybe<Scalars["Int"]>;
@@ -19713,6 +19737,7 @@ export interface reservation_max_order_by {
19713
19737
  id?: InputMaybe<order_by>;
19714
19738
  listingConnectionId?: InputMaybe<order_by>;
19715
19739
  listingId?: InputMaybe<order_by>;
19740
+ matchPaymentCustomerRef?: InputMaybe<order_by>;
19716
19741
  nights?: InputMaybe<order_by>;
19717
19742
  otaReservationId?: InputMaybe<order_by>;
19718
19743
  paymentMethod?: InputMaybe<order_by>;
@@ -19753,6 +19778,7 @@ export interface reservation_min_order_by {
19753
19778
  id?: InputMaybe<order_by>;
19754
19779
  listingConnectionId?: InputMaybe<order_by>;
19755
19780
  listingId?: InputMaybe<order_by>;
19781
+ matchPaymentCustomerRef?: InputMaybe<order_by>;
19756
19782
  nights?: InputMaybe<order_by>;
19757
19783
  otaReservationId?: InputMaybe<order_by>;
19758
19784
  paymentMethod?: InputMaybe<order_by>;
@@ -19817,6 +19843,7 @@ export interface reservation_order_by {
19817
19843
  listingConnection?: InputMaybe<listing_connection_order_by>;
19818
19844
  listingConnectionId?: InputMaybe<order_by>;
19819
19845
  listingId?: InputMaybe<order_by>;
19846
+ matchPaymentCustomerRef?: InputMaybe<order_by>;
19820
19847
  members_aggregate?: InputMaybe<tenant_user_aggregate_order_by>;
19821
19848
  metadata?: InputMaybe<order_by>;
19822
19849
  nights?: InputMaybe<order_by>;
@@ -19917,6 +19944,8 @@ export type reservation_select_column =
19917
19944
  /** column name */
19918
19945
  | "listingId"
19919
19946
  /** column name */
19947
+ | "matchPaymentCustomerRef"
19948
+ /** column name */
19920
19949
  | "metadata"
19921
19950
  /** column name */
19922
19951
  | "nights"
@@ -19973,6 +20002,7 @@ export interface reservation_set_input {
19973
20002
  lineMap?: InputMaybe<Scalars["jsonb"]>;
19974
20003
  listingConnectionId?: InputMaybe<Scalars["uuid"]>;
19975
20004
  listingId?: InputMaybe<Scalars["uuid"]>;
20005
+ matchPaymentCustomerRef?: InputMaybe<Scalars["String"]>;
19976
20006
  metadata?: InputMaybe<Scalars["jsonb"]>;
19977
20007
  nights?: InputMaybe<Scalars["Int"]>;
19978
20008
  otaReservationId?: InputMaybe<Scalars["uuid"]>;
@@ -20160,6 +20190,7 @@ export interface reservation_stream_cursor_value_input {
20160
20190
  lineMap?: InputMaybe<Scalars["jsonb"]>;
20161
20191
  listingConnectionId?: InputMaybe<Scalars["uuid"]>;
20162
20192
  listingId?: InputMaybe<Scalars["uuid"]>;
20193
+ matchPaymentCustomerRef?: InputMaybe<Scalars["String"]>;
20163
20194
  metadata?: InputMaybe<Scalars["jsonb"]>;
20164
20195
  nights?: InputMaybe<Scalars["Int"]>;
20165
20196
  otaReservationId?: InputMaybe<Scalars["uuid"]>;
@@ -20250,6 +20281,8 @@ export type reservation_update_column =
20250
20281
  /** column name */
20251
20282
  | "listingId"
20252
20283
  /** column name */
20284
+ | "matchPaymentCustomerRef"
20285
+ /** column name */
20253
20286
  | "metadata"
20254
20287
  /** column name */
20255
20288
  | "nights"
@@ -50102,6 +50135,8 @@ export declare const generatedSchema: {
50102
50135
  };
50103
50136
  listing: { __type: "listing" };
50104
50137
  listingId: { __type: "uuid" };
50138
+ matchReservationConfirmationCode: { __type: "String" };
50139
+ matchReservationStripeGuestRef: { __type: "String" };
50105
50140
  matchStatus: { __type: "String" };
50106
50141
  members: {
50107
50142
  __type: "[tenant_user!]!";
@@ -50267,6 +50302,8 @@ export declare const generatedSchema: {
50267
50302
  };
50268
50303
  listing: { __type: "listing_bool_exp" };
50269
50304
  listingId: { __type: "uuid_comparison_exp" };
50305
+ matchReservationConfirmationCode: { __type: "String_comparison_exp" };
50306
+ matchReservationStripeGuestRef: { __type: "String_comparison_exp" };
50270
50307
  matchStatus: { __type: "String_comparison_exp" };
50271
50308
  members: { __type: "tenant_user_bool_exp" };
50272
50309
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" };
@@ -50664,6 +50701,8 @@ export declare const generatedSchema: {
50664
50701
  };
50665
50702
  listing: { __type: "listing_obj_rel_insert_input" };
50666
50703
  listingId: { __type: "uuid" };
50704
+ matchReservationConfirmationCode: { __type: "String" };
50705
+ matchReservationStripeGuestRef: { __type: "String" };
50667
50706
  members: { __type: "tenant_user_arr_rel_insert_input" };
50668
50707
  metadata: { __type: "jsonb" };
50669
50708
  originCentTotal: { __type: "bigint" };
@@ -50697,6 +50736,8 @@ export declare const generatedSchema: {
50697
50736
  id: { __type: "uuid" };
50698
50737
  lineId: { __type: "uuid" };
50699
50738
  listingId: { __type: "uuid" };
50739
+ matchReservationConfirmationCode: { __type: "String" };
50740
+ matchReservationStripeGuestRef: { __type: "String" };
50700
50741
  matchStatus: { __type: "String" };
50701
50742
  originCentTotal: { __type: "bigint" };
50702
50743
  originCurrency: { __type: "String" };
@@ -50720,6 +50761,8 @@ export declare const generatedSchema: {
50720
50761
  id: { __type: "order_by" };
50721
50762
  lineId: { __type: "order_by" };
50722
50763
  listingId: { __type: "order_by" };
50764
+ matchReservationConfirmationCode: { __type: "order_by" };
50765
+ matchReservationStripeGuestRef: { __type: "order_by" };
50723
50766
  matchStatus: { __type: "order_by" };
50724
50767
  originCentTotal: { __type: "order_by" };
50725
50768
  originCurrency: { __type: "order_by" };
@@ -50744,6 +50787,8 @@ export declare const generatedSchema: {
50744
50787
  id: { __type: "uuid" };
50745
50788
  lineId: { __type: "uuid" };
50746
50789
  listingId: { __type: "uuid" };
50790
+ matchReservationConfirmationCode: { __type: "String" };
50791
+ matchReservationStripeGuestRef: { __type: "String" };
50747
50792
  matchStatus: { __type: "String" };
50748
50793
  originCentTotal: { __type: "bigint" };
50749
50794
  originCurrency: { __type: "String" };
@@ -50767,6 +50812,8 @@ export declare const generatedSchema: {
50767
50812
  id: { __type: "order_by" };
50768
50813
  lineId: { __type: "order_by" };
50769
50814
  listingId: { __type: "order_by" };
50815
+ matchReservationConfirmationCode: { __type: "order_by" };
50816
+ matchReservationStripeGuestRef: { __type: "order_by" };
50770
50817
  matchStatus: { __type: "order_by" };
50771
50818
  originCentTotal: { __type: "order_by" };
50772
50819
  originCurrency: { __type: "order_by" };
@@ -50814,6 +50861,8 @@ export declare const generatedSchema: {
50814
50861
  };
50815
50862
  listing: { __type: "listing_order_by" };
50816
50863
  listingId: { __type: "order_by" };
50864
+ matchReservationConfirmationCode: { __type: "order_by" };
50865
+ matchReservationStripeGuestRef: { __type: "order_by" };
50817
50866
  matchStatus: { __type: "order_by" };
50818
50867
  members_aggregate: { __type: "tenant_user_aggregate_order_by" };
50819
50868
  metadata: { __type: "order_by" };
@@ -50849,6 +50898,8 @@ export declare const generatedSchema: {
50849
50898
  id: { __type: "uuid" };
50850
50899
  lineId: { __type: "uuid" };
50851
50900
  listingId: { __type: "uuid" };
50901
+ matchReservationConfirmationCode: { __type: "String" };
50902
+ matchReservationStripeGuestRef: { __type: "String" };
50852
50903
  metadata: { __type: "jsonb" };
50853
50904
  originCentTotal: { __type: "bigint" };
50854
50905
  originCurrency: { __type: "String" };
@@ -50911,6 +50962,8 @@ export declare const generatedSchema: {
50911
50962
  id: { __type: "uuid" };
50912
50963
  lineId: { __type: "uuid" };
50913
50964
  listingId: { __type: "uuid" };
50965
+ matchReservationConfirmationCode: { __type: "String" };
50966
+ matchReservationStripeGuestRef: { __type: "String" };
50914
50967
  matchStatus: { __type: "String" };
50915
50968
  metadata: { __type: "jsonb" };
50916
50969
  originCentTotal: { __type: "bigint" };
@@ -55867,6 +55920,7 @@ export declare const generatedSchema: {
55867
55920
  listingConnection: { __type: "listing_connection" };
55868
55921
  listingConnectionId: { __type: "uuid" };
55869
55922
  listingId: { __type: "uuid" };
55923
+ matchPaymentCustomerRef: { __type: "String" };
55870
55924
  members: {
55871
55925
  __type: "[tenant_user!]!";
55872
55926
  __args: {
@@ -56748,6 +56802,7 @@ export declare const generatedSchema: {
56748
56802
  listingConnection: { __type: "listing_connection_bool_exp" };
56749
56803
  listingConnectionId: { __type: "uuid_comparison_exp" };
56750
56804
  listingId: { __type: "uuid_comparison_exp" };
56805
+ matchPaymentCustomerRef: { __type: "String_comparison_exp" };
56751
56806
  members: { __type: "tenant_user_bool_exp" };
56752
56807
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" };
56753
56808
  metadata: { __type: "jsonb_comparison_exp" };
@@ -56855,6 +56910,7 @@ export declare const generatedSchema: {
56855
56910
  listingConnection: { __type: "listing_connection_obj_rel_insert_input" };
56856
56911
  listingConnectionId: { __type: "uuid" };
56857
56912
  listingId: { __type: "uuid" };
56913
+ matchPaymentCustomerRef: { __type: "String" };
56858
56914
  members: { __type: "tenant_user_arr_rel_insert_input" };
56859
56915
  metadata: { __type: "jsonb" };
56860
56916
  nights: { __type: "Int" };
@@ -56912,6 +56968,7 @@ export declare const generatedSchema: {
56912
56968
  id: { __type: "uuid" };
56913
56969
  listingConnectionId: { __type: "uuid" };
56914
56970
  listingId: { __type: "uuid" };
56971
+ matchPaymentCustomerRef: { __type: "String" };
56915
56972
  nights: { __type: "Int" };
56916
56973
  otaReservationId: { __type: "uuid" };
56917
56974
  paymentMethod: { __type: "String" };
@@ -56950,6 +57007,7 @@ export declare const generatedSchema: {
56950
57007
  id: { __type: "order_by" };
56951
57008
  listingConnectionId: { __type: "order_by" };
56952
57009
  listingId: { __type: "order_by" };
57010
+ matchPaymentCustomerRef: { __type: "order_by" };
56953
57011
  nights: { __type: "order_by" };
56954
57012
  otaReservationId: { __type: "order_by" };
56955
57013
  paymentMethod: { __type: "order_by" };
@@ -56989,6 +57047,7 @@ export declare const generatedSchema: {
56989
57047
  id: { __type: "uuid" };
56990
57048
  listingConnectionId: { __type: "uuid" };
56991
57049
  listingId: { __type: "uuid" };
57050
+ matchPaymentCustomerRef: { __type: "String" };
56992
57051
  nights: { __type: "Int" };
56993
57052
  otaReservationId: { __type: "uuid" };
56994
57053
  paymentMethod: { __type: "String" };
@@ -57027,6 +57086,7 @@ export declare const generatedSchema: {
57027
57086
  id: { __type: "order_by" };
57028
57087
  listingConnectionId: { __type: "order_by" };
57029
57088
  listingId: { __type: "order_by" };
57089
+ matchPaymentCustomerRef: { __type: "order_by" };
57030
57090
  nights: { __type: "order_by" };
57031
57091
  otaReservationId: { __type: "order_by" };
57032
57092
  paymentMethod: { __type: "order_by" };
@@ -57091,6 +57151,7 @@ export declare const generatedSchema: {
57091
57151
  listingConnection: { __type: "listing_connection_order_by" };
57092
57152
  listingConnectionId: { __type: "order_by" };
57093
57153
  listingId: { __type: "order_by" };
57154
+ matchPaymentCustomerRef: { __type: "order_by" };
57094
57155
  members_aggregate: { __type: "tenant_user_aggregate_order_by" };
57095
57156
  metadata: { __type: "order_by" };
57096
57157
  nights: { __type: "order_by" };
@@ -57156,6 +57217,7 @@ export declare const generatedSchema: {
57156
57217
  lineMap: { __type: "jsonb" };
57157
57218
  listingConnectionId: { __type: "uuid" };
57158
57219
  listingId: { __type: "uuid" };
57220
+ matchPaymentCustomerRef: { __type: "String" };
57159
57221
  metadata: { __type: "jsonb" };
57160
57222
  nights: { __type: "Int" };
57161
57223
  otaReservationId: { __type: "uuid" };
@@ -57356,6 +57418,7 @@ export declare const generatedSchema: {
57356
57418
  lineMap: { __type: "jsonb" };
57357
57419
  listingConnectionId: { __type: "uuid" };
57358
57420
  listingId: { __type: "uuid" };
57421
+ matchPaymentCustomerRef: { __type: "String" };
57359
57422
  metadata: { __type: "jsonb" };
57360
57423
  nights: { __type: "Int" };
57361
57424
  otaReservationId: { __type: "uuid" };
@@ -87998,6 +88061,8 @@ export interface payment_line {
87998
88061
  */
87999
88062
  listing?: Maybe<listing>;
88000
88063
  listingId?: Maybe<ScalarsEnums["uuid"]>;
88064
+ matchReservationConfirmationCode?: Maybe<ScalarsEnums["String"]>;
88065
+ matchReservationStripeGuestRef?: Maybe<ScalarsEnums["String"]>;
88001
88066
  matchStatus?: Maybe<ScalarsEnums["String"]>;
88002
88067
  /**
88003
88068
  * An array relationship
@@ -88628,6 +88693,8 @@ export interface payment_line_max_fields {
88628
88693
  id?: Maybe<ScalarsEnums["uuid"]>;
88629
88694
  lineId?: Maybe<ScalarsEnums["uuid"]>;
88630
88695
  listingId?: Maybe<ScalarsEnums["uuid"]>;
88696
+ matchReservationConfirmationCode?: Maybe<ScalarsEnums["String"]>;
88697
+ matchReservationStripeGuestRef?: Maybe<ScalarsEnums["String"]>;
88631
88698
  matchStatus?: Maybe<ScalarsEnums["String"]>;
88632
88699
  originCentTotal?: Maybe<ScalarsEnums["bigint"]>;
88633
88700
  originCurrency?: Maybe<ScalarsEnums["String"]>;
@@ -88656,6 +88723,8 @@ export interface payment_line_min_fields {
88656
88723
  id?: Maybe<ScalarsEnums["uuid"]>;
88657
88724
  lineId?: Maybe<ScalarsEnums["uuid"]>;
88658
88725
  listingId?: Maybe<ScalarsEnums["uuid"]>;
88726
+ matchReservationConfirmationCode?: Maybe<ScalarsEnums["String"]>;
88727
+ matchReservationStripeGuestRef?: Maybe<ScalarsEnums["String"]>;
88659
88728
  matchStatus?: Maybe<ScalarsEnums["String"]>;
88660
88729
  originCentTotal?: Maybe<ScalarsEnums["bigint"]>;
88661
88730
  originCurrency?: Maybe<ScalarsEnums["String"]>;
@@ -92603,6 +92672,7 @@ export interface reservation {
92603
92672
  listingConnection?: Maybe<listing_connection>;
92604
92673
  listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
92605
92674
  listingId?: Maybe<ScalarsEnums["uuid"]>;
92675
+ matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
92606
92676
  /**
92607
92677
  * An array relationship
92608
92678
  */
@@ -93521,6 +93591,7 @@ export interface reservation_max_fields {
93521
93591
  id?: Maybe<ScalarsEnums["uuid"]>;
93522
93592
  listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
93523
93593
  listingId?: Maybe<ScalarsEnums["uuid"]>;
93594
+ matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
93524
93595
  nights?: Maybe<ScalarsEnums["Int"]>;
93525
93596
  otaReservationId?: Maybe<ScalarsEnums["uuid"]>;
93526
93597
  paymentMethod?: Maybe<ScalarsEnums["String"]>;
@@ -93564,6 +93635,7 @@ export interface reservation_min_fields {
93564
93635
  id?: Maybe<ScalarsEnums["uuid"]>;
93565
93636
  listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
93566
93637
  listingId?: Maybe<ScalarsEnums["uuid"]>;
93638
+ matchPaymentCustomerRef?: Maybe<ScalarsEnums["String"]>;
93567
93639
  nights?: Maybe<ScalarsEnums["Int"]>;
93568
93640
  otaReservationId?: Maybe<ScalarsEnums["uuid"]>;
93569
93641
  paymentMethod?: Maybe<ScalarsEnums["String"]>;
@@ -22197,6 +22197,8 @@ exports.generatedSchema = {
22197
22197
  },
22198
22198
  listing: { __type: "listing" },
22199
22199
  listingId: { __type: "uuid" },
22200
+ matchReservationConfirmationCode: { __type: "String" },
22201
+ matchReservationStripeGuestRef: { __type: "String" },
22200
22202
  matchStatus: { __type: "String" },
22201
22203
  members: {
22202
22204
  __type: "[tenant_user!]!",
@@ -22362,6 +22364,8 @@ exports.generatedSchema = {
22362
22364
  },
22363
22365
  listing: { __type: "listing_bool_exp" },
22364
22366
  listingId: { __type: "uuid_comparison_exp" },
22367
+ matchReservationConfirmationCode: { __type: "String_comparison_exp" },
22368
+ matchReservationStripeGuestRef: { __type: "String_comparison_exp" },
22365
22369
  matchStatus: { __type: "String_comparison_exp" },
22366
22370
  members: { __type: "tenant_user_bool_exp" },
22367
22371
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" },
@@ -22759,6 +22763,8 @@ exports.generatedSchema = {
22759
22763
  },
22760
22764
  listing: { __type: "listing_obj_rel_insert_input" },
22761
22765
  listingId: { __type: "uuid" },
22766
+ matchReservationConfirmationCode: { __type: "String" },
22767
+ matchReservationStripeGuestRef: { __type: "String" },
22762
22768
  members: { __type: "tenant_user_arr_rel_insert_input" },
22763
22769
  metadata: { __type: "jsonb" },
22764
22770
  originCentTotal: { __type: "bigint" },
@@ -22792,6 +22798,8 @@ exports.generatedSchema = {
22792
22798
  id: { __type: "uuid" },
22793
22799
  lineId: { __type: "uuid" },
22794
22800
  listingId: { __type: "uuid" },
22801
+ matchReservationConfirmationCode: { __type: "String" },
22802
+ matchReservationStripeGuestRef: { __type: "String" },
22795
22803
  matchStatus: { __type: "String" },
22796
22804
  originCentTotal: { __type: "bigint" },
22797
22805
  originCurrency: { __type: "String" },
@@ -22815,6 +22823,8 @@ exports.generatedSchema = {
22815
22823
  id: { __type: "order_by" },
22816
22824
  lineId: { __type: "order_by" },
22817
22825
  listingId: { __type: "order_by" },
22826
+ matchReservationConfirmationCode: { __type: "order_by" },
22827
+ matchReservationStripeGuestRef: { __type: "order_by" },
22818
22828
  matchStatus: { __type: "order_by" },
22819
22829
  originCentTotal: { __type: "order_by" },
22820
22830
  originCurrency: { __type: "order_by" },
@@ -22839,6 +22849,8 @@ exports.generatedSchema = {
22839
22849
  id: { __type: "uuid" },
22840
22850
  lineId: { __type: "uuid" },
22841
22851
  listingId: { __type: "uuid" },
22852
+ matchReservationConfirmationCode: { __type: "String" },
22853
+ matchReservationStripeGuestRef: { __type: "String" },
22842
22854
  matchStatus: { __type: "String" },
22843
22855
  originCentTotal: { __type: "bigint" },
22844
22856
  originCurrency: { __type: "String" },
@@ -22862,6 +22874,8 @@ exports.generatedSchema = {
22862
22874
  id: { __type: "order_by" },
22863
22875
  lineId: { __type: "order_by" },
22864
22876
  listingId: { __type: "order_by" },
22877
+ matchReservationConfirmationCode: { __type: "order_by" },
22878
+ matchReservationStripeGuestRef: { __type: "order_by" },
22865
22879
  matchStatus: { __type: "order_by" },
22866
22880
  originCentTotal: { __type: "order_by" },
22867
22881
  originCurrency: { __type: "order_by" },
@@ -22909,6 +22923,8 @@ exports.generatedSchema = {
22909
22923
  },
22910
22924
  listing: { __type: "listing_order_by" },
22911
22925
  listingId: { __type: "order_by" },
22926
+ matchReservationConfirmationCode: { __type: "order_by" },
22927
+ matchReservationStripeGuestRef: { __type: "order_by" },
22912
22928
  matchStatus: { __type: "order_by" },
22913
22929
  members_aggregate: { __type: "tenant_user_aggregate_order_by" },
22914
22930
  metadata: { __type: "order_by" },
@@ -22944,6 +22960,8 @@ exports.generatedSchema = {
22944
22960
  id: { __type: "uuid" },
22945
22961
  lineId: { __type: "uuid" },
22946
22962
  listingId: { __type: "uuid" },
22963
+ matchReservationConfirmationCode: { __type: "String" },
22964
+ matchReservationStripeGuestRef: { __type: "String" },
22947
22965
  metadata: { __type: "jsonb" },
22948
22966
  originCentTotal: { __type: "bigint" },
22949
22967
  originCurrency: { __type: "String" },
@@ -23006,6 +23024,8 @@ exports.generatedSchema = {
23006
23024
  id: { __type: "uuid" },
23007
23025
  lineId: { __type: "uuid" },
23008
23026
  listingId: { __type: "uuid" },
23027
+ matchReservationConfirmationCode: { __type: "String" },
23028
+ matchReservationStripeGuestRef: { __type: "String" },
23009
23029
  matchStatus: { __type: "String" },
23010
23030
  metadata: { __type: "jsonb" },
23011
23031
  originCentTotal: { __type: "bigint" },
@@ -27962,6 +27982,7 @@ exports.generatedSchema = {
27962
27982
  listingConnection: { __type: "listing_connection" },
27963
27983
  listingConnectionId: { __type: "uuid" },
27964
27984
  listingId: { __type: "uuid" },
27985
+ matchPaymentCustomerRef: { __type: "String" },
27965
27986
  members: {
27966
27987
  __type: "[tenant_user!]!",
27967
27988
  __args: {
@@ -28843,6 +28864,7 @@ exports.generatedSchema = {
28843
28864
  listingConnection: { __type: "listing_connection_bool_exp" },
28844
28865
  listingConnectionId: { __type: "uuid_comparison_exp" },
28845
28866
  listingId: { __type: "uuid_comparison_exp" },
28867
+ matchPaymentCustomerRef: { __type: "String_comparison_exp" },
28846
28868
  members: { __type: "tenant_user_bool_exp" },
28847
28869
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" },
28848
28870
  metadata: { __type: "jsonb_comparison_exp" },
@@ -28950,6 +28972,7 @@ exports.generatedSchema = {
28950
28972
  listingConnection: { __type: "listing_connection_obj_rel_insert_input" },
28951
28973
  listingConnectionId: { __type: "uuid" },
28952
28974
  listingId: { __type: "uuid" },
28975
+ matchPaymentCustomerRef: { __type: "String" },
28953
28976
  members: { __type: "tenant_user_arr_rel_insert_input" },
28954
28977
  metadata: { __type: "jsonb" },
28955
28978
  nights: { __type: "Int" },
@@ -29007,6 +29030,7 @@ exports.generatedSchema = {
29007
29030
  id: { __type: "uuid" },
29008
29031
  listingConnectionId: { __type: "uuid" },
29009
29032
  listingId: { __type: "uuid" },
29033
+ matchPaymentCustomerRef: { __type: "String" },
29010
29034
  nights: { __type: "Int" },
29011
29035
  otaReservationId: { __type: "uuid" },
29012
29036
  paymentMethod: { __type: "String" },
@@ -29045,6 +29069,7 @@ exports.generatedSchema = {
29045
29069
  id: { __type: "order_by" },
29046
29070
  listingConnectionId: { __type: "order_by" },
29047
29071
  listingId: { __type: "order_by" },
29072
+ matchPaymentCustomerRef: { __type: "order_by" },
29048
29073
  nights: { __type: "order_by" },
29049
29074
  otaReservationId: { __type: "order_by" },
29050
29075
  paymentMethod: { __type: "order_by" },
@@ -29084,6 +29109,7 @@ exports.generatedSchema = {
29084
29109
  id: { __type: "uuid" },
29085
29110
  listingConnectionId: { __type: "uuid" },
29086
29111
  listingId: { __type: "uuid" },
29112
+ matchPaymentCustomerRef: { __type: "String" },
29087
29113
  nights: { __type: "Int" },
29088
29114
  otaReservationId: { __type: "uuid" },
29089
29115
  paymentMethod: { __type: "String" },
@@ -29122,6 +29148,7 @@ exports.generatedSchema = {
29122
29148
  id: { __type: "order_by" },
29123
29149
  listingConnectionId: { __type: "order_by" },
29124
29150
  listingId: { __type: "order_by" },
29151
+ matchPaymentCustomerRef: { __type: "order_by" },
29125
29152
  nights: { __type: "order_by" },
29126
29153
  otaReservationId: { __type: "order_by" },
29127
29154
  paymentMethod: { __type: "order_by" },
@@ -29186,6 +29213,7 @@ exports.generatedSchema = {
29186
29213
  listingConnection: { __type: "listing_connection_order_by" },
29187
29214
  listingConnectionId: { __type: "order_by" },
29188
29215
  listingId: { __type: "order_by" },
29216
+ matchPaymentCustomerRef: { __type: "order_by" },
29189
29217
  members_aggregate: { __type: "tenant_user_aggregate_order_by" },
29190
29218
  metadata: { __type: "order_by" },
29191
29219
  nights: { __type: "order_by" },
@@ -29251,6 +29279,7 @@ exports.generatedSchema = {
29251
29279
  lineMap: { __type: "jsonb" },
29252
29280
  listingConnectionId: { __type: "uuid" },
29253
29281
  listingId: { __type: "uuid" },
29282
+ matchPaymentCustomerRef: { __type: "String" },
29254
29283
  metadata: { __type: "jsonb" },
29255
29284
  nights: { __type: "Int" },
29256
29285
  otaReservationId: { __type: "uuid" },
@@ -29451,6 +29480,7 @@ exports.generatedSchema = {
29451
29480
  lineMap: { __type: "jsonb" },
29452
29481
  listingConnectionId: { __type: "uuid" },
29453
29482
  listingId: { __type: "uuid" },
29483
+ matchPaymentCustomerRef: { __type: "String" },
29454
29484
  metadata: { __type: "jsonb" },
29455
29485
  nights: { __type: "Int" },
29456
29486
  otaReservationId: { __type: "uuid" },