@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"]>;
@@ -22194,6 +22194,8 @@ export const generatedSchema = {
22194
22194
  },
22195
22195
  listing: { __type: "listing" },
22196
22196
  listingId: { __type: "uuid" },
22197
+ matchReservationConfirmationCode: { __type: "String" },
22198
+ matchReservationStripeGuestRef: { __type: "String" },
22197
22199
  matchStatus: { __type: "String" },
22198
22200
  members: {
22199
22201
  __type: "[tenant_user!]!",
@@ -22359,6 +22361,8 @@ export const generatedSchema = {
22359
22361
  },
22360
22362
  listing: { __type: "listing_bool_exp" },
22361
22363
  listingId: { __type: "uuid_comparison_exp" },
22364
+ matchReservationConfirmationCode: { __type: "String_comparison_exp" },
22365
+ matchReservationStripeGuestRef: { __type: "String_comparison_exp" },
22362
22366
  matchStatus: { __type: "String_comparison_exp" },
22363
22367
  members: { __type: "tenant_user_bool_exp" },
22364
22368
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" },
@@ -22756,6 +22760,8 @@ export const generatedSchema = {
22756
22760
  },
22757
22761
  listing: { __type: "listing_obj_rel_insert_input" },
22758
22762
  listingId: { __type: "uuid" },
22763
+ matchReservationConfirmationCode: { __type: "String" },
22764
+ matchReservationStripeGuestRef: { __type: "String" },
22759
22765
  members: { __type: "tenant_user_arr_rel_insert_input" },
22760
22766
  metadata: { __type: "jsonb" },
22761
22767
  originCentTotal: { __type: "bigint" },
@@ -22789,6 +22795,8 @@ export const generatedSchema = {
22789
22795
  id: { __type: "uuid" },
22790
22796
  lineId: { __type: "uuid" },
22791
22797
  listingId: { __type: "uuid" },
22798
+ matchReservationConfirmationCode: { __type: "String" },
22799
+ matchReservationStripeGuestRef: { __type: "String" },
22792
22800
  matchStatus: { __type: "String" },
22793
22801
  originCentTotal: { __type: "bigint" },
22794
22802
  originCurrency: { __type: "String" },
@@ -22812,6 +22820,8 @@ export const generatedSchema = {
22812
22820
  id: { __type: "order_by" },
22813
22821
  lineId: { __type: "order_by" },
22814
22822
  listingId: { __type: "order_by" },
22823
+ matchReservationConfirmationCode: { __type: "order_by" },
22824
+ matchReservationStripeGuestRef: { __type: "order_by" },
22815
22825
  matchStatus: { __type: "order_by" },
22816
22826
  originCentTotal: { __type: "order_by" },
22817
22827
  originCurrency: { __type: "order_by" },
@@ -22836,6 +22846,8 @@ export const generatedSchema = {
22836
22846
  id: { __type: "uuid" },
22837
22847
  lineId: { __type: "uuid" },
22838
22848
  listingId: { __type: "uuid" },
22849
+ matchReservationConfirmationCode: { __type: "String" },
22850
+ matchReservationStripeGuestRef: { __type: "String" },
22839
22851
  matchStatus: { __type: "String" },
22840
22852
  originCentTotal: { __type: "bigint" },
22841
22853
  originCurrency: { __type: "String" },
@@ -22859,6 +22871,8 @@ export const generatedSchema = {
22859
22871
  id: { __type: "order_by" },
22860
22872
  lineId: { __type: "order_by" },
22861
22873
  listingId: { __type: "order_by" },
22874
+ matchReservationConfirmationCode: { __type: "order_by" },
22875
+ matchReservationStripeGuestRef: { __type: "order_by" },
22862
22876
  matchStatus: { __type: "order_by" },
22863
22877
  originCentTotal: { __type: "order_by" },
22864
22878
  originCurrency: { __type: "order_by" },
@@ -22906,6 +22920,8 @@ export const generatedSchema = {
22906
22920
  },
22907
22921
  listing: { __type: "listing_order_by" },
22908
22922
  listingId: { __type: "order_by" },
22923
+ matchReservationConfirmationCode: { __type: "order_by" },
22924
+ matchReservationStripeGuestRef: { __type: "order_by" },
22909
22925
  matchStatus: { __type: "order_by" },
22910
22926
  members_aggregate: { __type: "tenant_user_aggregate_order_by" },
22911
22927
  metadata: { __type: "order_by" },
@@ -22941,6 +22957,8 @@ export const generatedSchema = {
22941
22957
  id: { __type: "uuid" },
22942
22958
  lineId: { __type: "uuid" },
22943
22959
  listingId: { __type: "uuid" },
22960
+ matchReservationConfirmationCode: { __type: "String" },
22961
+ matchReservationStripeGuestRef: { __type: "String" },
22944
22962
  metadata: { __type: "jsonb" },
22945
22963
  originCentTotal: { __type: "bigint" },
22946
22964
  originCurrency: { __type: "String" },
@@ -23003,6 +23021,8 @@ export const generatedSchema = {
23003
23021
  id: { __type: "uuid" },
23004
23022
  lineId: { __type: "uuid" },
23005
23023
  listingId: { __type: "uuid" },
23024
+ matchReservationConfirmationCode: { __type: "String" },
23025
+ matchReservationStripeGuestRef: { __type: "String" },
23006
23026
  matchStatus: { __type: "String" },
23007
23027
  metadata: { __type: "jsonb" },
23008
23028
  originCentTotal: { __type: "bigint" },
@@ -27959,6 +27979,7 @@ export const generatedSchema = {
27959
27979
  listingConnection: { __type: "listing_connection" },
27960
27980
  listingConnectionId: { __type: "uuid" },
27961
27981
  listingId: { __type: "uuid" },
27982
+ matchPaymentCustomerRef: { __type: "String" },
27962
27983
  members: {
27963
27984
  __type: "[tenant_user!]!",
27964
27985
  __args: {
@@ -28840,6 +28861,7 @@ export const generatedSchema = {
28840
28861
  listingConnection: { __type: "listing_connection_bool_exp" },
28841
28862
  listingConnectionId: { __type: "uuid_comparison_exp" },
28842
28863
  listingId: { __type: "uuid_comparison_exp" },
28864
+ matchPaymentCustomerRef: { __type: "String_comparison_exp" },
28843
28865
  members: { __type: "tenant_user_bool_exp" },
28844
28866
  members_aggregate: { __type: "tenant_user_aggregate_bool_exp" },
28845
28867
  metadata: { __type: "jsonb_comparison_exp" },
@@ -28947,6 +28969,7 @@ export const generatedSchema = {
28947
28969
  listingConnection: { __type: "listing_connection_obj_rel_insert_input" },
28948
28970
  listingConnectionId: { __type: "uuid" },
28949
28971
  listingId: { __type: "uuid" },
28972
+ matchPaymentCustomerRef: { __type: "String" },
28950
28973
  members: { __type: "tenant_user_arr_rel_insert_input" },
28951
28974
  metadata: { __type: "jsonb" },
28952
28975
  nights: { __type: "Int" },
@@ -29004,6 +29027,7 @@ export const generatedSchema = {
29004
29027
  id: { __type: "uuid" },
29005
29028
  listingConnectionId: { __type: "uuid" },
29006
29029
  listingId: { __type: "uuid" },
29030
+ matchPaymentCustomerRef: { __type: "String" },
29007
29031
  nights: { __type: "Int" },
29008
29032
  otaReservationId: { __type: "uuid" },
29009
29033
  paymentMethod: { __type: "String" },
@@ -29042,6 +29066,7 @@ export const generatedSchema = {
29042
29066
  id: { __type: "order_by" },
29043
29067
  listingConnectionId: { __type: "order_by" },
29044
29068
  listingId: { __type: "order_by" },
29069
+ matchPaymentCustomerRef: { __type: "order_by" },
29045
29070
  nights: { __type: "order_by" },
29046
29071
  otaReservationId: { __type: "order_by" },
29047
29072
  paymentMethod: { __type: "order_by" },
@@ -29081,6 +29106,7 @@ export const generatedSchema = {
29081
29106
  id: { __type: "uuid" },
29082
29107
  listingConnectionId: { __type: "uuid" },
29083
29108
  listingId: { __type: "uuid" },
29109
+ matchPaymentCustomerRef: { __type: "String" },
29084
29110
  nights: { __type: "Int" },
29085
29111
  otaReservationId: { __type: "uuid" },
29086
29112
  paymentMethod: { __type: "String" },
@@ -29119,6 +29145,7 @@ export const generatedSchema = {
29119
29145
  id: { __type: "order_by" },
29120
29146
  listingConnectionId: { __type: "order_by" },
29121
29147
  listingId: { __type: "order_by" },
29148
+ matchPaymentCustomerRef: { __type: "order_by" },
29122
29149
  nights: { __type: "order_by" },
29123
29150
  otaReservationId: { __type: "order_by" },
29124
29151
  paymentMethod: { __type: "order_by" },
@@ -29183,6 +29210,7 @@ export const generatedSchema = {
29183
29210
  listingConnection: { __type: "listing_connection_order_by" },
29184
29211
  listingConnectionId: { __type: "order_by" },
29185
29212
  listingId: { __type: "order_by" },
29213
+ matchPaymentCustomerRef: { __type: "order_by" },
29186
29214
  members_aggregate: { __type: "tenant_user_aggregate_order_by" },
29187
29215
  metadata: { __type: "order_by" },
29188
29216
  nights: { __type: "order_by" },
@@ -29248,6 +29276,7 @@ export const generatedSchema = {
29248
29276
  lineMap: { __type: "jsonb" },
29249
29277
  listingConnectionId: { __type: "uuid" },
29250
29278
  listingId: { __type: "uuid" },
29279
+ matchPaymentCustomerRef: { __type: "String" },
29251
29280
  metadata: { __type: "jsonb" },
29252
29281
  nights: { __type: "Int" },
29253
29282
  otaReservationId: { __type: "uuid" },
@@ -29448,6 +29477,7 @@ export const generatedSchema = {
29448
29477
  lineMap: { __type: "jsonb" },
29449
29478
  listingConnectionId: { __type: "uuid" },
29450
29479
  listingId: { __type: "uuid" },
29480
+ matchPaymentCustomerRef: { __type: "String" },
29451
29481
  metadata: { __type: "jsonb" },
29452
29482
  nights: { __type: "Int" },
29453
29483
  otaReservationId: { __type: "uuid" },
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "!**/*.spec.*",
11
11
  "LICENSE"
12
12
  ],
13
- "version": "1.1.19",
13
+ "version": "1.1.21",
14
14
  "description": "Finalytic graphql",
15
15
  "main": "build/main/index.js",
16
16
  "module": "build/module/index.js",