@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"]>;
@@ -22243,6 +22243,8 @@ export const generatedSchema = {
22243
22243
  },
22244
22244
  listing: { __type: "listing" },
22245
22245
  listingId: { __type: "uuid" },
22246
+ matchReservationConfirmationCode: { __type: "String" },
22247
+ matchReservationStripeGuestRef: { __type: "String" },
22246
22248
  matchStatus: { __type: "String" },
22247
22249
  members: {
22248
22250
  __type: "[tenant_user!]!",
@@ -22410,6 +22412,8 @@ export const generatedSchema = {
22410
22412
  },
22411
22413
  listing: { __type: "listing_bool_exp" },
22412
22414
  listingId: { __type: "uuid_comparison_exp" },
22415
+ matchReservationConfirmationCode: { __type: "String_comparison_exp" },
22416
+ matchReservationStripeGuestRef: { __type: "String_comparison_exp" },
22413
22417
  matchStatus: { __type: "String_comparison_exp" },
22414
22418
  members: { __type: "tenant_user_bool_exp" },
22415
22419
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" },
@@ -22807,6 +22811,8 @@ export const generatedSchema = {
22807
22811
  },
22808
22812
  listing: { __type: "listing_obj_rel_insert_input" },
22809
22813
  listingId: { __type: "uuid" },
22814
+ matchReservationConfirmationCode: { __type: "String" },
22815
+ matchReservationStripeGuestRef: { __type: "String" },
22810
22816
  members: { __type: "tenant_user_arr_rel_insert_input" },
22811
22817
  metadata: { __type: "jsonb" },
22812
22818
  originCentTotal: { __type: "bigint" },
@@ -22840,6 +22846,8 @@ export const generatedSchema = {
22840
22846
  id: { __type: "uuid" },
22841
22847
  lineId: { __type: "uuid" },
22842
22848
  listingId: { __type: "uuid" },
22849
+ matchReservationConfirmationCode: { __type: "String" },
22850
+ matchReservationStripeGuestRef: { __type: "String" },
22843
22851
  matchStatus: { __type: "String" },
22844
22852
  originCentTotal: { __type: "bigint" },
22845
22853
  originCurrency: { __type: "String" },
@@ -22863,6 +22871,8 @@ export const generatedSchema = {
22863
22871
  id: { __type: "order_by" },
22864
22872
  lineId: { __type: "order_by" },
22865
22873
  listingId: { __type: "order_by" },
22874
+ matchReservationConfirmationCode: { __type: "order_by" },
22875
+ matchReservationStripeGuestRef: { __type: "order_by" },
22866
22876
  matchStatus: { __type: "order_by" },
22867
22877
  originCentTotal: { __type: "order_by" },
22868
22878
  originCurrency: { __type: "order_by" },
@@ -22887,6 +22897,8 @@ export const generatedSchema = {
22887
22897
  id: { __type: "uuid" },
22888
22898
  lineId: { __type: "uuid" },
22889
22899
  listingId: { __type: "uuid" },
22900
+ matchReservationConfirmationCode: { __type: "String" },
22901
+ matchReservationStripeGuestRef: { __type: "String" },
22890
22902
  matchStatus: { __type: "String" },
22891
22903
  originCentTotal: { __type: "bigint" },
22892
22904
  originCurrency: { __type: "String" },
@@ -22910,6 +22922,8 @@ export const generatedSchema = {
22910
22922
  id: { __type: "order_by" },
22911
22923
  lineId: { __type: "order_by" },
22912
22924
  listingId: { __type: "order_by" },
22925
+ matchReservationConfirmationCode: { __type: "order_by" },
22926
+ matchReservationStripeGuestRef: { __type: "order_by" },
22913
22927
  matchStatus: { __type: "order_by" },
22914
22928
  originCentTotal: { __type: "order_by" },
22915
22929
  originCurrency: { __type: "order_by" },
@@ -22957,6 +22971,8 @@ export const generatedSchema = {
22957
22971
  },
22958
22972
  listing: { __type: "listing_order_by" },
22959
22973
  listingId: { __type: "order_by" },
22974
+ matchReservationConfirmationCode: { __type: "order_by" },
22975
+ matchReservationStripeGuestRef: { __type: "order_by" },
22960
22976
  matchStatus: { __type: "order_by" },
22961
22977
  members_aggregate: { __type: "tenant_user_aggregate_order_by" },
22962
22978
  metadata: { __type: "order_by" },
@@ -22992,6 +23008,8 @@ export const generatedSchema = {
22992
23008
  id: { __type: "uuid" },
22993
23009
  lineId: { __type: "uuid" },
22994
23010
  listingId: { __type: "uuid" },
23011
+ matchReservationConfirmationCode: { __type: "String" },
23012
+ matchReservationStripeGuestRef: { __type: "String" },
22995
23013
  metadata: { __type: "jsonb" },
22996
23014
  originCentTotal: { __type: "bigint" },
22997
23015
  originCurrency: { __type: "String" },
@@ -23054,6 +23072,8 @@ export const generatedSchema = {
23054
23072
  id: { __type: "uuid" },
23055
23073
  lineId: { __type: "uuid" },
23056
23074
  listingId: { __type: "uuid" },
23075
+ matchReservationConfirmationCode: { __type: "String" },
23076
+ matchReservationStripeGuestRef: { __type: "String" },
23057
23077
  matchStatus: { __type: "String" },
23058
23078
  metadata: { __type: "jsonb" },
23059
23079
  originCentTotal: { __type: "bigint" },
@@ -28026,6 +28046,7 @@ export const generatedSchema = {
28026
28046
  listingConnection: { __type: "listing_connection" },
28027
28047
  listingConnectionId: { __type: "uuid" },
28028
28048
  listingId: { __type: "uuid" },
28049
+ matchPaymentCustomerRef: { __type: "String" },
28029
28050
  members: {
28030
28051
  __type: "[tenant_user!]!",
28031
28052
  __args: {
@@ -28907,6 +28928,7 @@ export const generatedSchema = {
28907
28928
  listingConnection: { __type: "listing_connection_bool_exp" },
28908
28929
  listingConnectionId: { __type: "uuid_comparison_exp" },
28909
28930
  listingId: { __type: "uuid_comparison_exp" },
28931
+ matchPaymentCustomerRef: { __type: "String_comparison_exp" },
28910
28932
  members: { __type: "tenant_user_bool_exp" },
28911
28933
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" },
28912
28934
  metadata: { __type: "jsonb_comparison_exp" },
@@ -29014,6 +29036,7 @@ export const generatedSchema = {
29014
29036
  listingConnection: { __type: "listing_connection_obj_rel_insert_input" },
29015
29037
  listingConnectionId: { __type: "uuid" },
29016
29038
  listingId: { __type: "uuid" },
29039
+ matchPaymentCustomerRef: { __type: "String" },
29017
29040
  members: { __type: "tenant_user_arr_rel_insert_input" },
29018
29041
  metadata: { __type: "jsonb" },
29019
29042
  nights: { __type: "Int" },
@@ -29071,6 +29094,7 @@ export const generatedSchema = {
29071
29094
  id: { __type: "uuid" },
29072
29095
  listingConnectionId: { __type: "uuid" },
29073
29096
  listingId: { __type: "uuid" },
29097
+ matchPaymentCustomerRef: { __type: "String" },
29074
29098
  nights: { __type: "Int" },
29075
29099
  otaReservationId: { __type: "uuid" },
29076
29100
  paymentMethod: { __type: "String" },
@@ -29109,6 +29133,7 @@ export const generatedSchema = {
29109
29133
  id: { __type: "order_by" },
29110
29134
  listingConnectionId: { __type: "order_by" },
29111
29135
  listingId: { __type: "order_by" },
29136
+ matchPaymentCustomerRef: { __type: "order_by" },
29112
29137
  nights: { __type: "order_by" },
29113
29138
  otaReservationId: { __type: "order_by" },
29114
29139
  paymentMethod: { __type: "order_by" },
@@ -29148,6 +29173,7 @@ export const generatedSchema = {
29148
29173
  id: { __type: "uuid" },
29149
29174
  listingConnectionId: { __type: "uuid" },
29150
29175
  listingId: { __type: "uuid" },
29176
+ matchPaymentCustomerRef: { __type: "String" },
29151
29177
  nights: { __type: "Int" },
29152
29178
  otaReservationId: { __type: "uuid" },
29153
29179
  paymentMethod: { __type: "String" },
@@ -29186,6 +29212,7 @@ export const generatedSchema = {
29186
29212
  id: { __type: "order_by" },
29187
29213
  listingConnectionId: { __type: "order_by" },
29188
29214
  listingId: { __type: "order_by" },
29215
+ matchPaymentCustomerRef: { __type: "order_by" },
29189
29216
  nights: { __type: "order_by" },
29190
29217
  otaReservationId: { __type: "order_by" },
29191
29218
  paymentMethod: { __type: "order_by" },
@@ -29250,6 +29277,7 @@ export const generatedSchema = {
29250
29277
  listingConnection: { __type: "listing_connection_order_by" },
29251
29278
  listingConnectionId: { __type: "order_by" },
29252
29279
  listingId: { __type: "order_by" },
29280
+ matchPaymentCustomerRef: { __type: "order_by" },
29253
29281
  members_aggregate: { __type: "tenant_user_aggregate_order_by" },
29254
29282
  metadata: { __type: "order_by" },
29255
29283
  nights: { __type: "order_by" },
@@ -29315,6 +29343,7 @@ export const generatedSchema = {
29315
29343
  lineMap: { __type: "jsonb" },
29316
29344
  listingConnectionId: { __type: "uuid" },
29317
29345
  listingId: { __type: "uuid" },
29346
+ matchPaymentCustomerRef: { __type: "String" },
29318
29347
  metadata: { __type: "jsonb" },
29319
29348
  nights: { __type: "Int" },
29320
29349
  otaReservationId: { __type: "uuid" },
@@ -29515,6 +29544,7 @@ export const generatedSchema = {
29515
29544
  lineMap: { __type: "jsonb" },
29516
29545
  listingConnectionId: { __type: "uuid" },
29517
29546
  listingId: { __type: "uuid" },
29547
+ matchPaymentCustomerRef: { __type: "String" },
29518
29548
  metadata: { __type: "jsonb" },
29519
29549
  nights: { __type: "Int" },
29520
29550
  otaReservationId: { __type: "uuid" },