@vrplatform/graphql 1.1.15 → 1.1.18

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.
@@ -10945,7 +10945,7 @@ export interface listing_bool_exp {
10945
10945
  paymentLines?: InputMaybe<payment_line_bool_exp>;
10946
10946
  paymentLines_aggregate?: InputMaybe<payment_line_aggregate_bool_exp>;
10947
10947
  pmsAddressData?: InputMaybe<jsonb_comparison_exp>;
10948
- pmsStatus?: InputMaybe<listing_pms_status_enum_comparison_exp>;
10948
+ pmsStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
10949
10949
  recurringFeeSubscriptions?: InputMaybe<recurringFeeListingSubscription_bool_exp>;
10950
10950
  recurringFeeSubscriptions_aggregate?: InputMaybe<recurringFeeListingSubscription_aggregate_bool_exp>;
10951
10951
  reservations?: InputMaybe<reservation_bool_exp>;
@@ -10958,7 +10958,7 @@ export interface listing_bool_exp {
10958
10958
  settings_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
10959
10959
  source?: InputMaybe<source_bool_exp>;
10960
10960
  sourceId?: InputMaybe<uuid_comparison_exp>;
10961
- status?: InputMaybe<listing_status_enum_comparison_exp>;
10961
+ status?: InputMaybe<activeStatus_enum_comparison_exp>;
10962
10962
  tenant?: InputMaybe<tenant_bool_exp>;
10963
10963
  tenantId?: InputMaybe<uuid_comparison_exp>;
10964
10964
  title?: InputMaybe<String_comparison_exp>;
@@ -11578,7 +11578,7 @@ export interface listing_insert_input {
11578
11578
  ownerships?: InputMaybe<listing_owner_arr_rel_insert_input>;
11579
11579
  paymentLines?: InputMaybe<payment_line_arr_rel_insert_input>;
11580
11580
  pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
11581
- pmsStatus?: InputMaybe<listing_pms_status_enum>;
11581
+ pmsStatus?: InputMaybe<activeStatus_enum>;
11582
11582
  recurringFeeSubscriptions?: InputMaybe<recurringFeeListingSubscription_arr_rel_insert_input>;
11583
11583
  reservations?: InputMaybe<reservation_arr_rel_insert_input>;
11584
11584
  settings?: InputMaybe<setting_arr_rel_insert_input>;
@@ -11586,7 +11586,7 @@ export interface listing_insert_input {
11586
11586
  settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
11587
11587
  source?: InputMaybe<source_obj_rel_insert_input>;
11588
11588
  sourceId?: InputMaybe<Scalars["uuid"]>;
11589
- status?: InputMaybe<listing_status_enum>;
11589
+ status?: InputMaybe<activeStatus_enum>;
11590
11590
  tenant?: InputMaybe<tenant_obj_rel_insert_input>;
11591
11591
  tenantId?: InputMaybe<Scalars["uuid"]>;
11592
11592
  title?: InputMaybe<Scalars["String"]>;
@@ -12082,93 +12082,6 @@ export interface listing_pk_columns_input {
12082
12082
  id: Scalars["uuid"];
12083
12083
  }
12084
12084
 
12085
- /** Boolean expression to filter rows from the table "listing_pms_status". All fields are combined with a logical 'AND'. */
12086
- export interface listing_pms_status_bool_exp {
12087
- _and?: InputMaybe<Array<listing_pms_status_bool_exp>>;
12088
- _not?: InputMaybe<listing_pms_status_bool_exp>;
12089
- _or?: InputMaybe<Array<listing_pms_status_bool_exp>>;
12090
- name?: InputMaybe<String_comparison_exp>;
12091
- }
12092
-
12093
- /** unique or primary key constraints on table "listing_pms_status" */
12094
- export type listing_pms_status_constraint =
12095
- /** unique or primary key constraint on columns "name" */
12096
- "listing_pms_status_pkey";
12097
-
12098
- export type listing_pms_status_enum =
12099
- | "active"
12100
- | "connected"
12101
- | "disabled"
12102
- | "disconnected"
12103
- | "enabled"
12104
- | "inactive";
12105
-
12106
- /** Boolean expression to compare columns of type "listing_pms_status_enum". All fields are combined with logical 'AND'. */
12107
- export interface listing_pms_status_enum_comparison_exp {
12108
- _eq?: InputMaybe<listing_pms_status_enum>;
12109
- _in?: InputMaybe<Array<listing_pms_status_enum>>;
12110
- _is_null?: InputMaybe<Scalars["Boolean"]>;
12111
- _neq?: InputMaybe<listing_pms_status_enum>;
12112
- _nin?: InputMaybe<Array<listing_pms_status_enum>>;
12113
- }
12114
-
12115
- /** input type for inserting data into table "listing_pms_status" */
12116
- export interface listing_pms_status_insert_input {
12117
- name?: InputMaybe<Scalars["String"]>;
12118
- }
12119
-
12120
- /** on_conflict condition type for table "listing_pms_status" */
12121
- export interface listing_pms_status_on_conflict {
12122
- constraint: listing_pms_status_constraint;
12123
- update_columns?: Array<listing_pms_status_update_column>;
12124
- where?: InputMaybe<listing_pms_status_bool_exp>;
12125
- }
12126
-
12127
- /** Ordering options when selecting data from "listing_pms_status". */
12128
- export interface listing_pms_status_order_by {
12129
- name?: InputMaybe<order_by>;
12130
- }
12131
-
12132
- /** primary key columns input for table: listing_pms_status */
12133
- export interface listing_pms_status_pk_columns_input {
12134
- name: Scalars["String"];
12135
- }
12136
-
12137
- /** select columns of table "listing_pms_status" */
12138
- export type listing_pms_status_select_column =
12139
- /** column name */
12140
- "name";
12141
-
12142
- /** input type for updating data in table "listing_pms_status" */
12143
- export interface listing_pms_status_set_input {
12144
- name?: InputMaybe<Scalars["String"]>;
12145
- }
12146
-
12147
- /** Streaming cursor of the table "listing_pms_status" */
12148
- export interface listing_pms_status_stream_cursor_input {
12149
- /** Stream column input with initial value */
12150
- initial_value: listing_pms_status_stream_cursor_value_input;
12151
- /** cursor ordering */
12152
- ordering?: InputMaybe<cursor_ordering>;
12153
- }
12154
-
12155
- /** Initial value of the column from where the streaming should start */
12156
- export interface listing_pms_status_stream_cursor_value_input {
12157
- name?: InputMaybe<Scalars["String"]>;
12158
- }
12159
-
12160
- /** update columns of table "listing_pms_status" */
12161
- export type listing_pms_status_update_column =
12162
- /** column name */
12163
- "name";
12164
-
12165
- export interface listing_pms_status_updates {
12166
- /** sets the columns of the filtered rows to the given values */
12167
- _set?: InputMaybe<listing_pms_status_set_input>;
12168
- /** filter the rows which have to be updated */
12169
- where: listing_pms_status_bool_exp;
12170
- }
12171
-
12172
12085
  /** prepend existing jsonb value of filtered columns with new jsonb value */
12173
12086
  export interface listing_prepend_input {
12174
12087
  addressData?: InputMaybe<Scalars["jsonb"]>;
@@ -12265,100 +12178,15 @@ export interface listing_set_input {
12265
12178
  name?: InputMaybe<Scalars["String"]>;
12266
12179
  ownerContactId?: InputMaybe<Scalars["uuid"]>;
12267
12180
  pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
12268
- pmsStatus?: InputMaybe<listing_pms_status_enum>;
12181
+ pmsStatus?: InputMaybe<activeStatus_enum>;
12269
12182
  sourceId?: InputMaybe<Scalars["uuid"]>;
12270
- status?: InputMaybe<listing_status_enum>;
12183
+ status?: InputMaybe<activeStatus_enum>;
12271
12184
  tenantId?: InputMaybe<Scalars["uuid"]>;
12272
12185
  title?: InputMaybe<Scalars["String"]>;
12273
12186
  uniqueRef?: InputMaybe<Scalars["String"]>;
12274
12187
  updatedAt?: InputMaybe<Scalars["timestamptz"]>;
12275
12188
  }
12276
12189
 
12277
- /** Boolean expression to filter rows from the table "listing_status". All fields are combined with a logical 'AND'. */
12278
- export interface listing_status_bool_exp {
12279
- _and?: InputMaybe<Array<listing_status_bool_exp>>;
12280
- _not?: InputMaybe<listing_status_bool_exp>;
12281
- _or?: InputMaybe<Array<listing_status_bool_exp>>;
12282
- name?: InputMaybe<String_comparison_exp>;
12283
- }
12284
-
12285
- /** unique or primary key constraints on table "listing_status" */
12286
- export type listing_status_constraint =
12287
- /** unique or primary key constraint on columns "name" */
12288
- "listing_status_pkey";
12289
-
12290
- export type listing_status_enum =
12291
- | "active"
12292
- | "disabled"
12293
- | "enabled"
12294
- | "inactive";
12295
-
12296
- /** Boolean expression to compare columns of type "listing_status_enum". All fields are combined with logical 'AND'. */
12297
- export interface listing_status_enum_comparison_exp {
12298
- _eq?: InputMaybe<listing_status_enum>;
12299
- _in?: InputMaybe<Array<listing_status_enum>>;
12300
- _is_null?: InputMaybe<Scalars["Boolean"]>;
12301
- _neq?: InputMaybe<listing_status_enum>;
12302
- _nin?: InputMaybe<Array<listing_status_enum>>;
12303
- }
12304
-
12305
- /** input type for inserting data into table "listing_status" */
12306
- export interface listing_status_insert_input {
12307
- name?: InputMaybe<Scalars["String"]>;
12308
- }
12309
-
12310
- /** on_conflict condition type for table "listing_status" */
12311
- export interface listing_status_on_conflict {
12312
- constraint: listing_status_constraint;
12313
- update_columns?: Array<listing_status_update_column>;
12314
- where?: InputMaybe<listing_status_bool_exp>;
12315
- }
12316
-
12317
- /** Ordering options when selecting data from "listing_status". */
12318
- export interface listing_status_order_by {
12319
- name?: InputMaybe<order_by>;
12320
- }
12321
-
12322
- /** primary key columns input for table: listing_status */
12323
- export interface listing_status_pk_columns_input {
12324
- name: Scalars["String"];
12325
- }
12326
-
12327
- /** select columns of table "listing_status" */
12328
- export type listing_status_select_column =
12329
- /** column name */
12330
- "name";
12331
-
12332
- /** input type for updating data in table "listing_status" */
12333
- export interface listing_status_set_input {
12334
- name?: InputMaybe<Scalars["String"]>;
12335
- }
12336
-
12337
- /** Streaming cursor of the table "listing_status" */
12338
- export interface listing_status_stream_cursor_input {
12339
- /** Stream column input with initial value */
12340
- initial_value: listing_status_stream_cursor_value_input;
12341
- /** cursor ordering */
12342
- ordering?: InputMaybe<cursor_ordering>;
12343
- }
12344
-
12345
- /** Initial value of the column from where the streaming should start */
12346
- export interface listing_status_stream_cursor_value_input {
12347
- name?: InputMaybe<Scalars["String"]>;
12348
- }
12349
-
12350
- /** update columns of table "listing_status" */
12351
- export type listing_status_update_column =
12352
- /** column name */
12353
- "name";
12354
-
12355
- export interface listing_status_updates {
12356
- /** sets the columns of the filtered rows to the given values */
12357
- _set?: InputMaybe<listing_status_set_input>;
12358
- /** filter the rows which have to be updated */
12359
- where: listing_status_bool_exp;
12360
- }
12361
-
12362
12190
  /** order by stddev() on columns of table "listing" */
12363
12191
  export interface listing_stddev_order_by {
12364
12192
  bedrooms?: InputMaybe<order_by>;
@@ -12421,9 +12249,9 @@ export interface listing_stream_cursor_value_input {
12421
12249
  name?: InputMaybe<Scalars["String"]>;
12422
12250
  ownerContactId?: InputMaybe<Scalars["uuid"]>;
12423
12251
  pmsAddressData?: InputMaybe<Scalars["jsonb"]>;
12424
- pmsStatus?: InputMaybe<listing_pms_status_enum>;
12252
+ pmsStatus?: InputMaybe<activeStatus_enum>;
12425
12253
  sourceId?: InputMaybe<Scalars["uuid"]>;
12426
- status?: InputMaybe<listing_status_enum>;
12254
+ status?: InputMaybe<activeStatus_enum>;
12427
12255
  tenantId?: InputMaybe<Scalars["uuid"]>;
12428
12256
  title?: InputMaybe<Scalars["String"]>;
12429
12257
  uniqueRef?: InputMaybe<Scalars["String"]>;
@@ -13730,7 +13558,7 @@ export interface owner_bool_exp {
13730
13558
  ownerships?: InputMaybe<listing_owner_bool_exp>;
13731
13559
  ownerships_aggregate?: InputMaybe<listing_owner_aggregate_bool_exp>;
13732
13560
  phone?: InputMaybe<String_comparison_exp>;
13733
- pmsStatus?: InputMaybe<owner_pms_status_enum_comparison_exp>;
13561
+ pmsStatus?: InputMaybe<activeStatus_enum_comparison_exp>;
13734
13562
  settingsLeft?: InputMaybe<setting_bool_exp>;
13735
13563
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
13736
13564
  settingsRight?: InputMaybe<setting_bool_exp>;
@@ -13739,7 +13567,7 @@ export interface owner_bool_exp {
13739
13567
  sourceId?: InputMaybe<uuid_comparison_exp>;
13740
13568
  statementOwnerships?: InputMaybe<owner_statement_owner_bool_exp>;
13741
13569
  statementOwnerships_aggregate?: InputMaybe<owner_statement_owner_aggregate_bool_exp>;
13742
- status?: InputMaybe<owner_status_enum_comparison_exp>;
13570
+ status?: InputMaybe<activeStatus_enum_comparison_exp>;
13743
13571
  taxId?: InputMaybe<String_comparison_exp>;
13744
13572
  taxStatements?: InputMaybe<tax_statement_bool_exp>;
13745
13573
  taxStatements_aggregate?: InputMaybe<tax_statement_aggregate_bool_exp>;
@@ -13777,13 +13605,13 @@ export interface owner_insert_input {
13777
13605
  ownershipPeriodMemberships?: InputMaybe<listingOwnershipPeriodMember_arr_rel_insert_input>;
13778
13606
  ownerships?: InputMaybe<listing_owner_arr_rel_insert_input>;
13779
13607
  phone?: InputMaybe<Scalars["String"]>;
13780
- pmsStatus?: InputMaybe<owner_pms_status_enum>;
13608
+ pmsStatus?: InputMaybe<activeStatus_enum>;
13781
13609
  settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
13782
13610
  settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
13783
13611
  source?: InputMaybe<source_obj_rel_insert_input>;
13784
13612
  sourceId?: InputMaybe<Scalars["uuid"]>;
13785
13613
  statementOwnerships?: InputMaybe<owner_statement_owner_arr_rel_insert_input>;
13786
- status?: InputMaybe<owner_status_enum>;
13614
+ status?: InputMaybe<activeStatus_enum>;
13787
13615
  taxId?: InputMaybe<Scalars["String"]>;
13788
13616
  taxStatements?: InputMaybe<tax_statement_arr_rel_insert_input>;
13789
13617
  tenant?: InputMaybe<tenant_obj_rel_insert_input>;
@@ -13885,87 +13713,6 @@ export interface owner_pk_columns_input {
13885
13713
  id: Scalars["uuid"];
13886
13714
  }
13887
13715
 
13888
- /** Boolean expression to filter rows from the table "owner_pms_status". All fields are combined with a logical 'AND'. */
13889
- export interface owner_pms_status_bool_exp {
13890
- _and?: InputMaybe<Array<owner_pms_status_bool_exp>>;
13891
- _not?: InputMaybe<owner_pms_status_bool_exp>;
13892
- _or?: InputMaybe<Array<owner_pms_status_bool_exp>>;
13893
- name?: InputMaybe<String_comparison_exp>;
13894
- }
13895
-
13896
- /** unique or primary key constraints on table "owner_pms_status" */
13897
- export type owner_pms_status_constraint =
13898
- /** unique or primary key constraint on columns "name" */
13899
- "owner_pms_status_pkey";
13900
-
13901
- export type owner_pms_status_enum = "active" | "inactive";
13902
-
13903
- /** Boolean expression to compare columns of type "owner_pms_status_enum". All fields are combined with logical 'AND'. */
13904
- export interface owner_pms_status_enum_comparison_exp {
13905
- _eq?: InputMaybe<owner_pms_status_enum>;
13906
- _in?: InputMaybe<Array<owner_pms_status_enum>>;
13907
- _is_null?: InputMaybe<Scalars["Boolean"]>;
13908
- _neq?: InputMaybe<owner_pms_status_enum>;
13909
- _nin?: InputMaybe<Array<owner_pms_status_enum>>;
13910
- }
13911
-
13912
- /** input type for inserting data into table "owner_pms_status" */
13913
- export interface owner_pms_status_insert_input {
13914
- name?: InputMaybe<Scalars["String"]>;
13915
- }
13916
-
13917
- /** on_conflict condition type for table "owner_pms_status" */
13918
- export interface owner_pms_status_on_conflict {
13919
- constraint: owner_pms_status_constraint;
13920
- update_columns?: Array<owner_pms_status_update_column>;
13921
- where?: InputMaybe<owner_pms_status_bool_exp>;
13922
- }
13923
-
13924
- /** Ordering options when selecting data from "owner_pms_status". */
13925
- export interface owner_pms_status_order_by {
13926
- name?: InputMaybe<order_by>;
13927
- }
13928
-
13929
- /** primary key columns input for table: owner_pms_status */
13930
- export interface owner_pms_status_pk_columns_input {
13931
- name: Scalars["String"];
13932
- }
13933
-
13934
- /** select columns of table "owner_pms_status" */
13935
- export type owner_pms_status_select_column =
13936
- /** column name */
13937
- "name";
13938
-
13939
- /** input type for updating data in table "owner_pms_status" */
13940
- export interface owner_pms_status_set_input {
13941
- name?: InputMaybe<Scalars["String"]>;
13942
- }
13943
-
13944
- /** Streaming cursor of the table "owner_pms_status" */
13945
- export interface owner_pms_status_stream_cursor_input {
13946
- /** Stream column input with initial value */
13947
- initial_value: owner_pms_status_stream_cursor_value_input;
13948
- /** cursor ordering */
13949
- ordering?: InputMaybe<cursor_ordering>;
13950
- }
13951
-
13952
- /** Initial value of the column from where the streaming should start */
13953
- export interface owner_pms_status_stream_cursor_value_input {
13954
- name?: InputMaybe<Scalars["String"]>;
13955
- }
13956
-
13957
- /** update columns of table "owner_pms_status" */
13958
- export type owner_pms_status_update_column =
13959
- /** column name */
13960
- "name";
13961
-
13962
- export interface owner_pms_status_updates {
13963
- /** sets the columns of the filtered rows to the given values */
13964
- _set?: InputMaybe<owner_pms_status_set_input>;
13965
- /** filter the rows which have to be updated */
13966
- where: owner_pms_status_bool_exp;
13967
- }
13968
-
13969
13716
  /** select columns of table "owner" */
13970
13717
  export type owner_select_column =
13971
13718
  /** column name */
@@ -14028,9 +13775,9 @@ export interface owner_set_input {
14028
13775
  /** Lastname or company name */
14029
13776
  name?: InputMaybe<Scalars["String"]>;
14030
13777
  phone?: InputMaybe<Scalars["String"]>;
14031
- pmsStatus?: InputMaybe<owner_pms_status_enum>;
13778
+ pmsStatus?: InputMaybe<activeStatus_enum>;
14032
13779
  sourceId?: InputMaybe<Scalars["uuid"]>;
14033
- status?: InputMaybe<owner_status_enum>;
13780
+ status?: InputMaybe<activeStatus_enum>;
14034
13781
  taxId?: InputMaybe<Scalars["String"]>;
14035
13782
  tenantId?: InputMaybe<Scalars["uuid"]>;
14036
13783
  type?: InputMaybe<owner_type_enum>;
@@ -15868,87 +15615,6 @@ export interface owner_statement_variance_order_by {
15868
15615
  centTransfer?: InputMaybe<order_by>;
15869
15616
  }
15870
15617
 
15871
- /** Boolean expression to filter rows from the table "owner_status". All fields are combined with a logical 'AND'. */
15872
- export interface owner_status_bool_exp {
15873
- _and?: InputMaybe<Array<owner_status_bool_exp>>;
15874
- _not?: InputMaybe<owner_status_bool_exp>;
15875
- _or?: InputMaybe<Array<owner_status_bool_exp>>;
15876
- name?: InputMaybe<String_comparison_exp>;
15877
- }
15878
-
15879
- /** unique or primary key constraints on table "owner_status" */
15880
- export type owner_status_constraint =
15881
- /** unique or primary key constraint on columns "name" */
15882
- "owner_status_pkey";
15883
-
15884
- export type owner_status_enum = "active" | "inactive";
15885
-
15886
- /** Boolean expression to compare columns of type "owner_status_enum". All fields are combined with logical 'AND'. */
15887
- export interface owner_status_enum_comparison_exp {
15888
- _eq?: InputMaybe<owner_status_enum>;
15889
- _in?: InputMaybe<Array<owner_status_enum>>;
15890
- _is_null?: InputMaybe<Scalars["Boolean"]>;
15891
- _neq?: InputMaybe<owner_status_enum>;
15892
- _nin?: InputMaybe<Array<owner_status_enum>>;
15893
- }
15894
-
15895
- /** input type for inserting data into table "owner_status" */
15896
- export interface owner_status_insert_input {
15897
- name?: InputMaybe<Scalars["String"]>;
15898
- }
15899
-
15900
- /** on_conflict condition type for table "owner_status" */
15901
- export interface owner_status_on_conflict {
15902
- constraint: owner_status_constraint;
15903
- update_columns?: Array<owner_status_update_column>;
15904
- where?: InputMaybe<owner_status_bool_exp>;
15905
- }
15906
-
15907
- /** Ordering options when selecting data from "owner_status". */
15908
- export interface owner_status_order_by {
15909
- name?: InputMaybe<order_by>;
15910
- }
15911
-
15912
- /** primary key columns input for table: owner_status */
15913
- export interface owner_status_pk_columns_input {
15914
- name: Scalars["String"];
15915
- }
15916
-
15917
- /** select columns of table "owner_status" */
15918
- export type owner_status_select_column =
15919
- /** column name */
15920
- "name";
15921
-
15922
- /** input type for updating data in table "owner_status" */
15923
- export interface owner_status_set_input {
15924
- name?: InputMaybe<Scalars["String"]>;
15925
- }
15926
-
15927
- /** Streaming cursor of the table "owner_status" */
15928
- export interface owner_status_stream_cursor_input {
15929
- /** Stream column input with initial value */
15930
- initial_value: owner_status_stream_cursor_value_input;
15931
- /** cursor ordering */
15932
- ordering?: InputMaybe<cursor_ordering>;
15933
- }
15934
-
15935
- /** Initial value of the column from where the streaming should start */
15936
- export interface owner_status_stream_cursor_value_input {
15937
- name?: InputMaybe<Scalars["String"]>;
15938
- }
15939
-
15940
- /** update columns of table "owner_status" */
15941
- export type owner_status_update_column =
15942
- /** column name */
15943
- "name";
15944
-
15945
- export interface owner_status_updates {
15946
- /** sets the columns of the filtered rows to the given values */
15947
- _set?: InputMaybe<owner_status_set_input>;
15948
- /** filter the rows which have to be updated */
15949
- where: owner_status_bool_exp;
15950
- }
15951
-
15952
15618
  /** Streaming cursor of the table "owner" */
15953
15619
  export interface owner_stream_cursor_input {
15954
15620
  /** Stream column input with initial value */
@@ -15970,9 +15636,9 @@ export interface owner_stream_cursor_value_input {
15970
15636
  /** Lastname or company name */
15971
15637
  name?: InputMaybe<Scalars["String"]>;
15972
15638
  phone?: InputMaybe<Scalars["String"]>;
15973
- pmsStatus?: InputMaybe<owner_pms_status_enum>;
15639
+ pmsStatus?: InputMaybe<activeStatus_enum>;
15974
15640
  sourceId?: InputMaybe<Scalars["uuid"]>;
15975
- status?: InputMaybe<owner_status_enum>;
15641
+ status?: InputMaybe<activeStatus_enum>;
15976
15642
  taxId?: InputMaybe<Scalars["String"]>;
15977
15643
  tenantId?: InputMaybe<Scalars["uuid"]>;
15978
15644
  type?: InputMaybe<owner_type_enum>;
@@ -38708,7 +38374,7 @@ export declare const generatedSchema: {
38708
38374
  };
38709
38375
  };
38710
38376
  pmsAddressData: { __type: "jsonb"; __args: { path: "String" } };
38711
- pmsStatus: { __type: "listing_pms_status_enum" };
38377
+ pmsStatus: { __type: "activeStatus_enum" };
38712
38378
  recurringFeeSubscriptions: {
38713
38379
  __type: "[recurringFeeListingSubscription!]!";
38714
38380
  __args: {
@@ -38811,7 +38477,7 @@ export declare const generatedSchema: {
38811
38477
  };
38812
38478
  source: { __type: "source" };
38813
38479
  sourceId: { __type: "uuid" };
38814
- status: { __type: "listing_status_enum" };
38480
+ status: { __type: "activeStatus_enum" };
38815
38481
  tenant: { __type: "tenant!" };
38816
38482
  tenantId: { __type: "uuid!" };
38817
38483
  title: { __type: "String" };
@@ -39549,7 +39215,7 @@ export declare const generatedSchema: {
39549
39215
  paymentLines: { __type: "payment_line_bool_exp" };
39550
39216
  paymentLines_aggregate: { __type: "payment_line_aggregate_bool_exp" };
39551
39217
  pmsAddressData: { __type: "jsonb_comparison_exp" };
39552
- pmsStatus: { __type: "listing_pms_status_enum_comparison_exp" };
39218
+ pmsStatus: { __type: "activeStatus_enum_comparison_exp" };
39553
39219
  recurringFeeSubscriptions: {
39554
39220
  __type: "recurringFeeListingSubscription_bool_exp";
39555
39221
  };
@@ -39566,7 +39232,7 @@ export declare const generatedSchema: {
39566
39232
  settings_aggregate: { __type: "setting_aggregate_bool_exp" };
39567
39233
  source: { __type: "source_bool_exp" };
39568
39234
  sourceId: { __type: "uuid_comparison_exp" };
39569
- status: { __type: "listing_status_enum_comparison_exp" };
39235
+ status: { __type: "activeStatus_enum_comparison_exp" };
39570
39236
  tenant: { __type: "tenant_bool_exp" };
39571
39237
  tenantId: { __type: "uuid_comparison_exp" };
39572
39238
  title: { __type: "String_comparison_exp" };
@@ -40270,7 +39936,7 @@ export declare const generatedSchema: {
40270
39936
  ownerships: { __type: "listing_owner_arr_rel_insert_input" };
40271
39937
  paymentLines: { __type: "payment_line_arr_rel_insert_input" };
40272
39938
  pmsAddressData: { __type: "jsonb" };
40273
- pmsStatus: { __type: "listing_pms_status_enum" };
39939
+ pmsStatus: { __type: "activeStatus_enum" };
40274
39940
  recurringFeeSubscriptions: {
40275
39941
  __type: "recurringFeeListingSubscription_arr_rel_insert_input";
40276
39942
  };
@@ -40280,7 +39946,7 @@ export declare const generatedSchema: {
40280
39946
  settingsRight: { __type: "setting_arr_rel_insert_input" };
40281
39947
  source: { __type: "source_obj_rel_insert_input" };
40282
39948
  sourceId: { __type: "uuid" };
40283
- status: { __type: "listing_status_enum" };
39949
+ status: { __type: "activeStatus_enum" };
40284
39950
  tenant: { __type: "tenant_obj_rel_insert_input" };
40285
39951
  tenantId: { __type: "uuid" };
40286
39952
  title: { __type: "String" };
@@ -40842,71 +40508,6 @@ export declare const generatedSchema: {
40842
40508
  };
40843
40509
  listing_owner_variance_order_by: { split: { __type: "order_by" } };
40844
40510
  listing_pk_columns_input: { id: { __type: "uuid!" } };
40845
- listing_pms_status: {
40846
- __typename: { __type: "String!" };
40847
- name: { __type: "String!" };
40848
- };
40849
- listing_pms_status_aggregate: {
40850
- __typename: { __type: "String!" };
40851
- aggregate: { __type: "listing_pms_status_aggregate_fields" };
40852
- nodes: { __type: "[listing_pms_status!]!" };
40853
- };
40854
- listing_pms_status_aggregate_fields: {
40855
- __typename: { __type: "String!" };
40856
- count: {
40857
- __type: "Int!";
40858
- __args: {
40859
- columns: "[listing_pms_status_select_column!]";
40860
- distinct: "Boolean";
40861
- };
40862
- };
40863
- max: { __type: "listing_pms_status_max_fields" };
40864
- min: { __type: "listing_pms_status_min_fields" };
40865
- };
40866
- listing_pms_status_bool_exp: {
40867
- _and: { __type: "[listing_pms_status_bool_exp!]" };
40868
- _not: { __type: "listing_pms_status_bool_exp" };
40869
- _or: { __type: "[listing_pms_status_bool_exp!]" };
40870
- name: { __type: "String_comparison_exp" };
40871
- };
40872
- listing_pms_status_enum_comparison_exp: {
40873
- _eq: { __type: "listing_pms_status_enum" };
40874
- _in: { __type: "[listing_pms_status_enum!]" };
40875
- _is_null: { __type: "Boolean" };
40876
- _neq: { __type: "listing_pms_status_enum" };
40877
- _nin: { __type: "[listing_pms_status_enum!]" };
40878
- };
40879
- listing_pms_status_insert_input: { name: { __type: "String" } };
40880
- listing_pms_status_max_fields: {
40881
- __typename: { __type: "String!" };
40882
- name: { __type: "String" };
40883
- };
40884
- listing_pms_status_min_fields: {
40885
- __typename: { __type: "String!" };
40886
- name: { __type: "String" };
40887
- };
40888
- listing_pms_status_mutation_response: {
40889
- __typename: { __type: "String!" };
40890
- affected_rows: { __type: "Int!" };
40891
- returning: { __type: "[listing_pms_status!]!" };
40892
- };
40893
- listing_pms_status_on_conflict: {
40894
- constraint: { __type: "listing_pms_status_constraint!" };
40895
- update_columns: { __type: "[listing_pms_status_update_column!]!" };
40896
- where: { __type: "listing_pms_status_bool_exp" };
40897
- };
40898
- listing_pms_status_order_by: { name: { __type: "order_by" } };
40899
- listing_pms_status_pk_columns_input: { name: { __type: "String!" } };
40900
- listing_pms_status_set_input: { name: { __type: "String" } };
40901
- listing_pms_status_stream_cursor_input: {
40902
- initial_value: { __type: "listing_pms_status_stream_cursor_value_input!" };
40903
- ordering: { __type: "cursor_ordering" };
40904
- };
40905
- listing_pms_status_stream_cursor_value_input: { name: { __type: "String" } };
40906
- listing_pms_status_updates: {
40907
- _set: { __type: "listing_pms_status_set_input" };
40908
- where: { __type: "listing_pms_status_bool_exp!" };
40909
- };
40910
40511
  listing_prepend_input: {
40911
40512
  addressData: { __type: "jsonb" };
40912
40513
  metadata: { __type: "jsonb" };
@@ -40934,79 +40535,14 @@ export declare const generatedSchema: {
40934
40535
  name: { __type: "String" };
40935
40536
  ownerContactId: { __type: "uuid" };
40936
40537
  pmsAddressData: { __type: "jsonb" };
40937
- pmsStatus: { __type: "listing_pms_status_enum" };
40538
+ pmsStatus: { __type: "activeStatus_enum" };
40938
40539
  sourceId: { __type: "uuid" };
40939
- status: { __type: "listing_status_enum" };
40540
+ status: { __type: "activeStatus_enum" };
40940
40541
  tenantId: { __type: "uuid" };
40941
40542
  title: { __type: "String" };
40942
40543
  uniqueRef: { __type: "String" };
40943
40544
  updatedAt: { __type: "timestamptz" };
40944
40545
  };
40945
- listing_status: {
40946
- __typename: { __type: "String!" };
40947
- name: { __type: "String!" };
40948
- };
40949
- listing_status_aggregate: {
40950
- __typename: { __type: "String!" };
40951
- aggregate: { __type: "listing_status_aggregate_fields" };
40952
- nodes: { __type: "[listing_status!]!" };
40953
- };
40954
- listing_status_aggregate_fields: {
40955
- __typename: { __type: "String!" };
40956
- count: {
40957
- __type: "Int!";
40958
- __args: {
40959
- columns: "[listing_status_select_column!]";
40960
- distinct: "Boolean";
40961
- };
40962
- };
40963
- max: { __type: "listing_status_max_fields" };
40964
- min: { __type: "listing_status_min_fields" };
40965
- };
40966
- listing_status_bool_exp: {
40967
- _and: { __type: "[listing_status_bool_exp!]" };
40968
- _not: { __type: "listing_status_bool_exp" };
40969
- _or: { __type: "[listing_status_bool_exp!]" };
40970
- name: { __type: "String_comparison_exp" };
40971
- };
40972
- listing_status_enum_comparison_exp: {
40973
- _eq: { __type: "listing_status_enum" };
40974
- _in: { __type: "[listing_status_enum!]" };
40975
- _is_null: { __type: "Boolean" };
40976
- _neq: { __type: "listing_status_enum" };
40977
- _nin: { __type: "[listing_status_enum!]" };
40978
- };
40979
- listing_status_insert_input: { name: { __type: "String" } };
40980
- listing_status_max_fields: {
40981
- __typename: { __type: "String!" };
40982
- name: { __type: "String" };
40983
- };
40984
- listing_status_min_fields: {
40985
- __typename: { __type: "String!" };
40986
- name: { __type: "String" };
40987
- };
40988
- listing_status_mutation_response: {
40989
- __typename: { __type: "String!" };
40990
- affected_rows: { __type: "Int!" };
40991
- returning: { __type: "[listing_status!]!" };
40992
- };
40993
- listing_status_on_conflict: {
40994
- constraint: { __type: "listing_status_constraint!" };
40995
- update_columns: { __type: "[listing_status_update_column!]!" };
40996
- where: { __type: "listing_status_bool_exp" };
40997
- };
40998
- listing_status_order_by: { name: { __type: "order_by" } };
40999
- listing_status_pk_columns_input: { name: { __type: "String!" } };
41000
- listing_status_set_input: { name: { __type: "String" } };
41001
- listing_status_stream_cursor_input: {
41002
- initial_value: { __type: "listing_status_stream_cursor_value_input!" };
41003
- ordering: { __type: "cursor_ordering" };
41004
- };
41005
- listing_status_stream_cursor_value_input: { name: { __type: "String" } };
41006
- listing_status_updates: {
41007
- _set: { __type: "listing_status_set_input" };
41008
- where: { __type: "listing_status_bool_exp!" };
41009
- };
41010
40546
  listing_stddev_fields: {
41011
40547
  __typename: { __type: "String!" };
41012
40548
  bedrooms: { __type: "Float" };
@@ -41075,9 +40611,9 @@ export declare const generatedSchema: {
41075
40611
  name: { __type: "String" };
41076
40612
  ownerContactId: { __type: "uuid" };
41077
40613
  pmsAddressData: { __type: "jsonb" };
41078
- pmsStatus: { __type: "listing_pms_status_enum" };
40614
+ pmsStatus: { __type: "activeStatus_enum" };
41079
40615
  sourceId: { __type: "uuid" };
41080
- status: { __type: "listing_status_enum" };
40616
+ status: { __type: "activeStatus_enum" };
41081
40617
  tenantId: { __type: "uuid" };
41082
40618
  title: { __type: "String" };
41083
40619
  uniqueRef: { __type: "String" };
@@ -42510,38 +42046,6 @@ export declare const generatedSchema: {
42510
42046
  __type: "listing_owner_role";
42511
42047
  __args: { name: "String!" };
42512
42048
  };
42513
- delete_listing_pms_status: {
42514
- __type: "listing_pms_status_mutation_response";
42515
- __args: { where: "listing_pms_status_bool_exp!" };
42516
- };
42517
- delete_listing_pms_status_by_pk: {
42518
- __type: "listing_pms_status";
42519
- __args: { name: "String!" };
42520
- };
42521
- delete_listing_status: {
42522
- __type: "listing_status_mutation_response";
42523
- __args: { where: "listing_status_bool_exp!" };
42524
- };
42525
- delete_listing_status_by_pk: {
42526
- __type: "listing_status";
42527
- __args: { name: "String!" };
42528
- };
42529
- delete_owner_pms_status: {
42530
- __type: "owner_pms_status_mutation_response";
42531
- __args: { where: "owner_pms_status_bool_exp!" };
42532
- };
42533
- delete_owner_pms_status_by_pk: {
42534
- __type: "owner_pms_status";
42535
- __args: { name: "String!" };
42536
- };
42537
- delete_owner_status: {
42538
- __type: "owner_status_mutation_response";
42539
- __args: { where: "owner_status_bool_exp!" };
42540
- };
42541
- delete_owner_status_by_pk: {
42542
- __type: "owner_status";
42543
- __args: { name: "String!" };
42544
- };
42545
42049
  delete_owner_user_access_role: {
42546
42050
  __type: "owner_user_access_role_mutation_response";
42547
42051
  __args: { where: "owner_user_access_role_bool_exp!" };
@@ -44143,62 +43647,6 @@ export declare const generatedSchema: {
44143
43647
  on_conflict: "listing_owner_role_on_conflict";
44144
43648
  };
44145
43649
  };
44146
- insert_listing_pms_status: {
44147
- __type: "listing_pms_status_mutation_response";
44148
- __args: {
44149
- objects: "[listing_pms_status_insert_input!]!";
44150
- on_conflict: "listing_pms_status_on_conflict";
44151
- };
44152
- };
44153
- insert_listing_pms_status_one: {
44154
- __type: "listing_pms_status";
44155
- __args: {
44156
- object: "listing_pms_status_insert_input!";
44157
- on_conflict: "listing_pms_status_on_conflict";
44158
- };
44159
- };
44160
- insert_listing_status: {
44161
- __type: "listing_status_mutation_response";
44162
- __args: {
44163
- objects: "[listing_status_insert_input!]!";
44164
- on_conflict: "listing_status_on_conflict";
44165
- };
44166
- };
44167
- insert_listing_status_one: {
44168
- __type: "listing_status";
44169
- __args: {
44170
- object: "listing_status_insert_input!";
44171
- on_conflict: "listing_status_on_conflict";
44172
- };
44173
- };
44174
- insert_owner_pms_status: {
44175
- __type: "owner_pms_status_mutation_response";
44176
- __args: {
44177
- objects: "[owner_pms_status_insert_input!]!";
44178
- on_conflict: "owner_pms_status_on_conflict";
44179
- };
44180
- };
44181
- insert_owner_pms_status_one: {
44182
- __type: "owner_pms_status";
44183
- __args: {
44184
- object: "owner_pms_status_insert_input!";
44185
- on_conflict: "owner_pms_status_on_conflict";
44186
- };
44187
- };
44188
- insert_owner_status: {
44189
- __type: "owner_status_mutation_response";
44190
- __args: {
44191
- objects: "[owner_status_insert_input!]!";
44192
- on_conflict: "owner_status_on_conflict";
44193
- };
44194
- };
44195
- insert_owner_status_one: {
44196
- __type: "owner_status";
44197
- __args: {
44198
- object: "owner_status_insert_input!";
44199
- on_conflict: "owner_status_on_conflict";
44200
- };
44201
- };
44202
43650
  insert_owner_user_access_role: {
44203
43651
  __type: "owner_user_access_role_mutation_response";
44204
43652
  __args: {
@@ -46628,60 +46076,6 @@ export declare const generatedSchema: {
46628
46076
  __type: "[listing_owner_role_mutation_response]";
46629
46077
  __args: { updates: "[listing_owner_role_updates!]!" };
46630
46078
  };
46631
- update_listing_pms_status: {
46632
- __type: "listing_pms_status_mutation_response";
46633
- __args: {
46634
- _set: "listing_pms_status_set_input";
46635
- where: "listing_pms_status_bool_exp!";
46636
- };
46637
- };
46638
- update_listing_pms_status_by_pk: {
46639
- __type: "listing_pms_status";
46640
- __args: {
46641
- _set: "listing_pms_status_set_input";
46642
- pk_columns: "listing_pms_status_pk_columns_input!";
46643
- };
46644
- };
46645
- update_listing_pms_status_many: {
46646
- __type: "[listing_pms_status_mutation_response]";
46647
- __args: { updates: "[listing_pms_status_updates!]!" };
46648
- };
46649
- update_listing_status: {
46650
- __type: "listing_status_mutation_response";
46651
- __args: {
46652
- _set: "listing_status_set_input";
46653
- where: "listing_status_bool_exp!";
46654
- };
46655
- };
46656
- update_listing_status_by_pk: {
46657
- __type: "listing_status";
46658
- __args: {
46659
- _set: "listing_status_set_input";
46660
- pk_columns: "listing_status_pk_columns_input!";
46661
- };
46662
- };
46663
- update_listing_status_many: {
46664
- __type: "[listing_status_mutation_response]";
46665
- __args: { updates: "[listing_status_updates!]!" };
46666
- };
46667
- update_owner_pms_status: {
46668
- __type: "owner_pms_status_mutation_response";
46669
- __args: {
46670
- _set: "owner_pms_status_set_input";
46671
- where: "owner_pms_status_bool_exp!";
46672
- };
46673
- };
46674
- update_owner_pms_status_by_pk: {
46675
- __type: "owner_pms_status";
46676
- __args: {
46677
- _set: "owner_pms_status_set_input";
46678
- pk_columns: "owner_pms_status_pk_columns_input!";
46679
- };
46680
- };
46681
- update_owner_pms_status_many: {
46682
- __type: "[owner_pms_status_mutation_response]";
46683
- __args: { updates: "[owner_pms_status_updates!]!" };
46684
- };
46685
46079
  update_owner_statement_line_many: {
46686
46080
  __type: "[owner_statement_line_mutation_response]";
46687
46081
  __args: { updates: "[owner_statement_line_updates!]!" };
@@ -46694,24 +46088,6 @@ export declare const generatedSchema: {
46694
46088
  __type: "[owner_statement_template_mutation_response]";
46695
46089
  __args: { updates: "[owner_statement_template_updates!]!" };
46696
46090
  };
46697
- update_owner_status: {
46698
- __type: "owner_status_mutation_response";
46699
- __args: {
46700
- _set: "owner_status_set_input";
46701
- where: "owner_status_bool_exp!";
46702
- };
46703
- };
46704
- update_owner_status_by_pk: {
46705
- __type: "owner_status";
46706
- __args: {
46707
- _set: "owner_status_set_input";
46708
- pk_columns: "owner_status_pk_columns_input!";
46709
- };
46710
- };
46711
- update_owner_status_many: {
46712
- __type: "[owner_status_mutation_response]";
46713
- __args: { updates: "[owner_status_updates!]!" };
46714
- };
46715
46091
  update_owner_user_access_role: {
46716
46092
  __type: "owner_user_access_role_mutation_response";
46717
46093
  __args: {
@@ -47181,7 +46557,7 @@ export declare const generatedSchema: {
47181
46557
  };
47182
46558
  };
47183
46559
  phone: { __type: "String" };
47184
- pmsStatus: { __type: "owner_pms_status_enum" };
46560
+ pmsStatus: { __type: "activeStatus_enum" };
47185
46561
  settingsLeft: {
47186
46562
  __type: "[setting!]!";
47187
46563
  __args: {
@@ -47244,7 +46620,7 @@ export declare const generatedSchema: {
47244
46620
  where: "owner_statement_owner_bool_exp";
47245
46621
  };
47246
46622
  };
47247
- status: { __type: "owner_status_enum" };
46623
+ status: { __type: "activeStatus_enum" };
47248
46624
  taxId: { __type: "String" };
47249
46625
  taxStatements: {
47250
46626
  __type: "[tax_statement!]!";
@@ -47648,7 +47024,7 @@ export declare const generatedSchema: {
47648
47024
  ownerships: { __type: "listing_owner_bool_exp" };
47649
47025
  ownerships_aggregate: { __type: "listing_owner_aggregate_bool_exp" };
47650
47026
  phone: { __type: "String_comparison_exp" };
47651
- pmsStatus: { __type: "owner_pms_status_enum_comparison_exp" };
47027
+ pmsStatus: { __type: "activeStatus_enum_comparison_exp" };
47652
47028
  settingsLeft: { __type: "setting_bool_exp" };
47653
47029
  settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
47654
47030
  settingsRight: { __type: "setting_bool_exp" };
@@ -47659,7 +47035,7 @@ export declare const generatedSchema: {
47659
47035
  statementOwnerships_aggregate: {
47660
47036
  __type: "owner_statement_owner_aggregate_bool_exp";
47661
47037
  };
47662
- status: { __type: "owner_status_enum_comparison_exp" };
47038
+ status: { __type: "activeStatus_enum_comparison_exp" };
47663
47039
  taxId: { __type: "String_comparison_exp" };
47664
47040
  taxStatements: { __type: "tax_statement_bool_exp" };
47665
47041
  taxStatements_aggregate: { __type: "tax_statement_aggregate_bool_exp" };
@@ -47689,7 +47065,7 @@ export declare const generatedSchema: {
47689
47065
  };
47690
47066
  ownerships: { __type: "listing_owner_arr_rel_insert_input" };
47691
47067
  phone: { __type: "String" };
47692
- pmsStatus: { __type: "owner_pms_status_enum" };
47068
+ pmsStatus: { __type: "activeStatus_enum" };
47693
47069
  settingsLeft: { __type: "setting_arr_rel_insert_input" };
47694
47070
  settingsRight: { __type: "setting_arr_rel_insert_input" };
47695
47071
  source: { __type: "source_obj_rel_insert_input" };
@@ -47697,7 +47073,7 @@ export declare const generatedSchema: {
47697
47073
  statementOwnerships: {
47698
47074
  __type: "owner_statement_owner_arr_rel_insert_input";
47699
47075
  };
47700
- status: { __type: "owner_status_enum" };
47076
+ status: { __type: "activeStatus_enum" };
47701
47077
  taxId: { __type: "String" };
47702
47078
  taxStatements: { __type: "tax_statement_arr_rel_insert_input" };
47703
47079
  tenant: { __type: "tenant_obj_rel_insert_input" };
@@ -47824,71 +47200,6 @@ export declare const generatedSchema: {
47824
47200
  userAccesses_aggregate: { __type: "owner_user_access_aggregate_order_by" };
47825
47201
  };
47826
47202
  owner_pk_columns_input: { id: { __type: "uuid!" } };
47827
- owner_pms_status: {
47828
- __typename: { __type: "String!" };
47829
- name: { __type: "String!" };
47830
- };
47831
- owner_pms_status_aggregate: {
47832
- __typename: { __type: "String!" };
47833
- aggregate: { __type: "owner_pms_status_aggregate_fields" };
47834
- nodes: { __type: "[owner_pms_status!]!" };
47835
- };
47836
- owner_pms_status_aggregate_fields: {
47837
- __typename: { __type: "String!" };
47838
- count: {
47839
- __type: "Int!";
47840
- __args: {
47841
- columns: "[owner_pms_status_select_column!]";
47842
- distinct: "Boolean";
47843
- };
47844
- };
47845
- max: { __type: "owner_pms_status_max_fields" };
47846
- min: { __type: "owner_pms_status_min_fields" };
47847
- };
47848
- owner_pms_status_bool_exp: {
47849
- _and: { __type: "[owner_pms_status_bool_exp!]" };
47850
- _not: { __type: "owner_pms_status_bool_exp" };
47851
- _or: { __type: "[owner_pms_status_bool_exp!]" };
47852
- name: { __type: "String_comparison_exp" };
47853
- };
47854
- owner_pms_status_enum_comparison_exp: {
47855
- _eq: { __type: "owner_pms_status_enum" };
47856
- _in: { __type: "[owner_pms_status_enum!]" };
47857
- _is_null: { __type: "Boolean" };
47858
- _neq: { __type: "owner_pms_status_enum" };
47859
- _nin: { __type: "[owner_pms_status_enum!]" };
47860
- };
47861
- owner_pms_status_insert_input: { name: { __type: "String" } };
47862
- owner_pms_status_max_fields: {
47863
- __typename: { __type: "String!" };
47864
- name: { __type: "String" };
47865
- };
47866
- owner_pms_status_min_fields: {
47867
- __typename: { __type: "String!" };
47868
- name: { __type: "String" };
47869
- };
47870
- owner_pms_status_mutation_response: {
47871
- __typename: { __type: "String!" };
47872
- affected_rows: { __type: "Int!" };
47873
- returning: { __type: "[owner_pms_status!]!" };
47874
- };
47875
- owner_pms_status_on_conflict: {
47876
- constraint: { __type: "owner_pms_status_constraint!" };
47877
- update_columns: { __type: "[owner_pms_status_update_column!]!" };
47878
- where: { __type: "owner_pms_status_bool_exp" };
47879
- };
47880
- owner_pms_status_order_by: { name: { __type: "order_by" } };
47881
- owner_pms_status_pk_columns_input: { name: { __type: "String!" } };
47882
- owner_pms_status_set_input: { name: { __type: "String" } };
47883
- owner_pms_status_stream_cursor_input: {
47884
- initial_value: { __type: "owner_pms_status_stream_cursor_value_input!" };
47885
- ordering: { __type: "cursor_ordering" };
47886
- };
47887
- owner_pms_status_stream_cursor_value_input: { name: { __type: "String" } };
47888
- owner_pms_status_updates: {
47889
- _set: { __type: "owner_pms_status_set_input" };
47890
- where: { __type: "owner_pms_status_bool_exp!" };
47891
- };
47892
47203
  owner_set_input: {
47893
47204
  addressId: { __type: "uuid" };
47894
47205
  companyType: { __type: "String" };
@@ -47900,9 +47211,9 @@ export declare const generatedSchema: {
47900
47211
  is1099PostalDelivery: { __type: "Boolean" };
47901
47212
  name: { __type: "String" };
47902
47213
  phone: { __type: "String" };
47903
- pmsStatus: { __type: "owner_pms_status_enum" };
47214
+ pmsStatus: { __type: "activeStatus_enum" };
47904
47215
  sourceId: { __type: "uuid" };
47905
- status: { __type: "owner_status_enum" };
47216
+ status: { __type: "activeStatus_enum" };
47906
47217
  taxId: { __type: "String" };
47907
47218
  tenantId: { __type: "uuid" };
47908
47219
  type: { __type: "owner_type_enum" };
@@ -49934,68 +49245,6 @@ export declare const generatedSchema: {
49934
49245
  centTotal: { __type: "order_by" };
49935
49246
  centTransfer: { __type: "order_by" };
49936
49247
  };
49937
- owner_status: {
49938
- __typename: { __type: "String!" };
49939
- name: { __type: "String!" };
49940
- };
49941
- owner_status_aggregate: {
49942
- __typename: { __type: "String!" };
49943
- aggregate: { __type: "owner_status_aggregate_fields" };
49944
- nodes: { __type: "[owner_status!]!" };
49945
- };
49946
- owner_status_aggregate_fields: {
49947
- __typename: { __type: "String!" };
49948
- count: {
49949
- __type: "Int!";
49950
- __args: { columns: "[owner_status_select_column!]"; distinct: "Boolean" };
49951
- };
49952
- max: { __type: "owner_status_max_fields" };
49953
- min: { __type: "owner_status_min_fields" };
49954
- };
49955
- owner_status_bool_exp: {
49956
- _and: { __type: "[owner_status_bool_exp!]" };
49957
- _not: { __type: "owner_status_bool_exp" };
49958
- _or: { __type: "[owner_status_bool_exp!]" };
49959
- name: { __type: "String_comparison_exp" };
49960
- };
49961
- owner_status_enum_comparison_exp: {
49962
- _eq: { __type: "owner_status_enum" };
49963
- _in: { __type: "[owner_status_enum!]" };
49964
- _is_null: { __type: "Boolean" };
49965
- _neq: { __type: "owner_status_enum" };
49966
- _nin: { __type: "[owner_status_enum!]" };
49967
- };
49968
- owner_status_insert_input: { name: { __type: "String" } };
49969
- owner_status_max_fields: {
49970
- __typename: { __type: "String!" };
49971
- name: { __type: "String" };
49972
- };
49973
- owner_status_min_fields: {
49974
- __typename: { __type: "String!" };
49975
- name: { __type: "String" };
49976
- };
49977
- owner_status_mutation_response: {
49978
- __typename: { __type: "String!" };
49979
- affected_rows: { __type: "Int!" };
49980
- returning: { __type: "[owner_status!]!" };
49981
- };
49982
- owner_status_on_conflict: {
49983
- constraint: { __type: "owner_status_constraint!" };
49984
- update_columns: { __type: "[owner_status_update_column!]!" };
49985
- where: { __type: "owner_status_bool_exp" };
49986
- };
49987
- owner_status_order_by: { name: { __type: "order_by" } };
49988
- owner_status_pk_columns_input: { name: { __type: "String!" } };
49989
- owner_status_set_input: { name: { __type: "String" } };
49990
- owner_status_stream_cursor_input: {
49991
- initial_value: { __type: "owner_status_stream_cursor_value_input!" };
49992
- ordering: { __type: "cursor_ordering" };
49993
- };
49994
- owner_status_stream_cursor_value_input: { name: { __type: "String" } };
49995
- owner_status_updates: {
49996
- _set: { __type: "owner_status_set_input" };
49997
- where: { __type: "owner_status_bool_exp!" };
49998
- };
49999
49248
  owner_stream_cursor_input: {
50000
49249
  initial_value: { __type: "owner_stream_cursor_value_input!" };
50001
49250
  ordering: { __type: "cursor_ordering" };
@@ -50011,9 +49260,9 @@ export declare const generatedSchema: {
50011
49260
  is1099PostalDelivery: { __type: "Boolean" };
50012
49261
  name: { __type: "String" };
50013
49262
  phone: { __type: "String" };
50014
- pmsStatus: { __type: "owner_pms_status_enum" };
49263
+ pmsStatus: { __type: "activeStatus_enum" };
50015
49264
  sourceId: { __type: "uuid" };
50016
- status: { __type: "owner_status_enum" };
49265
+ status: { __type: "activeStatus_enum" };
50017
49266
  taxId: { __type: "String" };
50018
49267
  tenantId: { __type: "uuid" };
50019
49268
  type: { __type: "owner_type_enum" };
@@ -53533,54 +52782,6 @@ export declare const generatedSchema: {
53533
52782
  __type: "listing_owner_role";
53534
52783
  __args: { name: "String!" };
53535
52784
  };
53536
- listing_pms_status: {
53537
- __type: "[listing_pms_status!]!";
53538
- __args: {
53539
- distinct_on: "[listing_pms_status_select_column!]";
53540
- limit: "Int";
53541
- offset: "Int";
53542
- order_by: "[listing_pms_status_order_by!]";
53543
- where: "listing_pms_status_bool_exp";
53544
- };
53545
- };
53546
- listing_pms_status_aggregate: {
53547
- __type: "listing_pms_status_aggregate!";
53548
- __args: {
53549
- distinct_on: "[listing_pms_status_select_column!]";
53550
- limit: "Int";
53551
- offset: "Int";
53552
- order_by: "[listing_pms_status_order_by!]";
53553
- where: "listing_pms_status_bool_exp";
53554
- };
53555
- };
53556
- listing_pms_status_by_pk: {
53557
- __type: "listing_pms_status";
53558
- __args: { name: "String!" };
53559
- };
53560
- listing_status: {
53561
- __type: "[listing_status!]!";
53562
- __args: {
53563
- distinct_on: "[listing_status_select_column!]";
53564
- limit: "Int";
53565
- offset: "Int";
53566
- order_by: "[listing_status_order_by!]";
53567
- where: "listing_status_bool_exp";
53568
- };
53569
- };
53570
- listing_status_aggregate: {
53571
- __type: "listing_status_aggregate!";
53572
- __args: {
53573
- distinct_on: "[listing_status_select_column!]";
53574
- limit: "Int";
53575
- offset: "Int";
53576
- order_by: "[listing_status_order_by!]";
53577
- where: "listing_status_bool_exp";
53578
- };
53579
- };
53580
- listing_status_by_pk: {
53581
- __type: "listing_status";
53582
- __args: { name: "String!" };
53583
- };
53584
52785
  listings: {
53585
52786
  __type: "[listing!]!";
53586
52787
  __args: {
@@ -53997,51 +53198,6 @@ export declare const generatedSchema: {
53997
53198
  where: "owner_user_access_bool_exp";
53998
53199
  };
53999
53200
  };
54000
- owner_pms_status: {
54001
- __type: "[owner_pms_status!]!";
54002
- __args: {
54003
- distinct_on: "[owner_pms_status_select_column!]";
54004
- limit: "Int";
54005
- offset: "Int";
54006
- order_by: "[owner_pms_status_order_by!]";
54007
- where: "owner_pms_status_bool_exp";
54008
- };
54009
- };
54010
- owner_pms_status_aggregate: {
54011
- __type: "owner_pms_status_aggregate!";
54012
- __args: {
54013
- distinct_on: "[owner_pms_status_select_column!]";
54014
- limit: "Int";
54015
- offset: "Int";
54016
- order_by: "[owner_pms_status_order_by!]";
54017
- where: "owner_pms_status_bool_exp";
54018
- };
54019
- };
54020
- owner_pms_status_by_pk: {
54021
- __type: "owner_pms_status";
54022
- __args: { name: "String!" };
54023
- };
54024
- owner_status: {
54025
- __type: "[owner_status!]!";
54026
- __args: {
54027
- distinct_on: "[owner_status_select_column!]";
54028
- limit: "Int";
54029
- offset: "Int";
54030
- order_by: "[owner_status_order_by!]";
54031
- where: "owner_status_bool_exp";
54032
- };
54033
- };
54034
- owner_status_aggregate: {
54035
- __type: "owner_status_aggregate!";
54036
- __args: {
54037
- distinct_on: "[owner_status_select_column!]";
54038
- limit: "Int";
54039
- offset: "Int";
54040
- order_by: "[owner_status_order_by!]";
54041
- where: "owner_status_bool_exp";
54042
- };
54043
- };
54044
- owner_status_by_pk: { __type: "owner_status"; __args: { name: "String!" } };
54045
53201
  owner_user_access_role: {
54046
53202
  __type: "[owner_user_access_role!]!";
54047
53203
  __args: {
@@ -62445,70 +61601,6 @@ export declare const generatedSchema: {
62445
61601
  where: "listing_owner_bool_exp";
62446
61602
  };
62447
61603
  };
62448
- listing_pms_status: {
62449
- __type: "[listing_pms_status!]!";
62450
- __args: {
62451
- distinct_on: "[listing_pms_status_select_column!]";
62452
- limit: "Int";
62453
- offset: "Int";
62454
- order_by: "[listing_pms_status_order_by!]";
62455
- where: "listing_pms_status_bool_exp";
62456
- };
62457
- };
62458
- listing_pms_status_aggregate: {
62459
- __type: "listing_pms_status_aggregate!";
62460
- __args: {
62461
- distinct_on: "[listing_pms_status_select_column!]";
62462
- limit: "Int";
62463
- offset: "Int";
62464
- order_by: "[listing_pms_status_order_by!]";
62465
- where: "listing_pms_status_bool_exp";
62466
- };
62467
- };
62468
- listing_pms_status_by_pk: {
62469
- __type: "listing_pms_status";
62470
- __args: { name: "String!" };
62471
- };
62472
- listing_pms_status_stream: {
62473
- __type: "[listing_pms_status!]!";
62474
- __args: {
62475
- batch_size: "Int!";
62476
- cursor: "[listing_pms_status_stream_cursor_input]!";
62477
- where: "listing_pms_status_bool_exp";
62478
- };
62479
- };
62480
- listing_status: {
62481
- __type: "[listing_status!]!";
62482
- __args: {
62483
- distinct_on: "[listing_status_select_column!]";
62484
- limit: "Int";
62485
- offset: "Int";
62486
- order_by: "[listing_status_order_by!]";
62487
- where: "listing_status_bool_exp";
62488
- };
62489
- };
62490
- listing_status_aggregate: {
62491
- __type: "listing_status_aggregate!";
62492
- __args: {
62493
- distinct_on: "[listing_status_select_column!]";
62494
- limit: "Int";
62495
- offset: "Int";
62496
- order_by: "[listing_status_order_by!]";
62497
- where: "listing_status_bool_exp";
62498
- };
62499
- };
62500
- listing_status_by_pk: {
62501
- __type: "listing_status";
62502
- __args: { name: "String!" };
62503
- };
62504
- listing_status_stream: {
62505
- __type: "[listing_status!]!";
62506
- __args: {
62507
- batch_size: "Int!";
62508
- cursor: "[listing_status_stream_cursor_input]!";
62509
- where: "listing_status_bool_exp";
62510
- };
62511
- };
62512
61604
  listing_stream: {
62513
61605
  __type: "[listing!]!";
62514
61606
  __args: {
@@ -63005,38 +62097,6 @@ export declare const generatedSchema: {
63005
62097
  where: "owner_user_access_bool_exp";
63006
62098
  };
63007
62099
  };
63008
- owner_pms_status: {
63009
- __type: "[owner_pms_status!]!";
63010
- __args: {
63011
- distinct_on: "[owner_pms_status_select_column!]";
63012
- limit: "Int";
63013
- offset: "Int";
63014
- order_by: "[owner_pms_status_order_by!]";
63015
- where: "owner_pms_status_bool_exp";
63016
- };
63017
- };
63018
- owner_pms_status_aggregate: {
63019
- __type: "owner_pms_status_aggregate!";
63020
- __args: {
63021
- distinct_on: "[owner_pms_status_select_column!]";
63022
- limit: "Int";
63023
- offset: "Int";
63024
- order_by: "[owner_pms_status_order_by!]";
63025
- where: "owner_pms_status_bool_exp";
63026
- };
63027
- };
63028
- owner_pms_status_by_pk: {
63029
- __type: "owner_pms_status";
63030
- __args: { name: "String!" };
63031
- };
63032
- owner_pms_status_stream: {
63033
- __type: "[owner_pms_status!]!";
63034
- __args: {
63035
- batch_size: "Int!";
63036
- cursor: "[owner_pms_status_stream_cursor_input]!";
63037
- where: "owner_pms_status_bool_exp";
63038
- };
63039
- };
63040
62100
  owner_statement_line_stream: {
63041
62101
  __type: "[owner_statement_line!]!";
63042
62102
  __args: {
@@ -63061,35 +62121,6 @@ export declare const generatedSchema: {
63061
62121
  where: "owner_statement_template_bool_exp";
63062
62122
  };
63063
62123
  };
63064
- owner_status: {
63065
- __type: "[owner_status!]!";
63066
- __args: {
63067
- distinct_on: "[owner_status_select_column!]";
63068
- limit: "Int";
63069
- offset: "Int";
63070
- order_by: "[owner_status_order_by!]";
63071
- where: "owner_status_bool_exp";
63072
- };
63073
- };
63074
- owner_status_aggregate: {
63075
- __type: "owner_status_aggregate!";
63076
- __args: {
63077
- distinct_on: "[owner_status_select_column!]";
63078
- limit: "Int";
63079
- offset: "Int";
63080
- order_by: "[owner_status_order_by!]";
63081
- where: "owner_status_bool_exp";
63082
- };
63083
- };
63084
- owner_status_by_pk: { __type: "owner_status"; __args: { name: "String!" } };
63085
- owner_status_stream: {
63086
- __type: "[owner_status!]!";
63087
- __args: {
63088
- batch_size: "Int!";
63089
- cursor: "[owner_status_stream_cursor_input]!";
63090
- where: "owner_status_bool_exp";
63091
- };
63092
- };
63093
62124
  owner_user_access_role: {
63094
62125
  __type: "[owner_user_access_role!]!";
63095
62126
  __args: {
@@ -79905,7 +78936,7 @@ export interface listing {
79905
78936
  */
79906
78937
  path?: Maybe<Scalars["String"]>;
79907
78938
  }) => Maybe<ScalarsEnums["jsonb"]>;
79908
- pmsStatus?: Maybe<ScalarsEnums["listing_pms_status_enum"]>;
78939
+ pmsStatus?: Maybe<ScalarsEnums["activeStatus_enum"]>;
79909
78940
  /**
79910
78941
  * An array relationship
79911
78942
  */
@@ -80161,7 +79192,7 @@ export interface listing {
80161
79192
  */
80162
79193
  source?: Maybe<source>;
80163
79194
  sourceId?: Maybe<ScalarsEnums["uuid"]>;
80164
- status?: Maybe<ScalarsEnums["listing_status_enum"]>;
79195
+ status?: Maybe<ScalarsEnums["activeStatus_enum"]>;
80165
79196
  /**
80166
79197
  * An object relationship
80167
79198
  */
@@ -81823,128 +80854,6 @@ export interface listing_owner_variance_fields {
81823
80854
  split?: Maybe<ScalarsEnums["Float"]>;
81824
80855
  }
81825
80856
 
81826
- /**
81827
- * columns and relationships of "listing_pms_status"
81828
- */
81829
- export interface listing_pms_status {
81830
- __typename?: "listing_pms_status";
81831
- name: ScalarsEnums["String"];
81832
- }
81833
-
81834
- /**
81835
- * aggregated selection of "listing_pms_status"
81836
- */
81837
- export interface listing_pms_status_aggregate {
81838
- __typename?: "listing_pms_status_aggregate";
81839
- aggregate?: Maybe<listing_pms_status_aggregate_fields>;
81840
- nodes: Array<listing_pms_status>;
81841
- }
81842
-
81843
- /**
81844
- * aggregate fields of "listing_pms_status"
81845
- */
81846
- export interface listing_pms_status_aggregate_fields {
81847
- __typename?: "listing_pms_status_aggregate_fields";
81848
- count: (args?: {
81849
- columns?: Maybe<Array<listing_pms_status_select_column>>;
81850
- distinct?: Maybe<Scalars["Boolean"]>;
81851
- }) => ScalarsEnums["Int"];
81852
- max?: Maybe<listing_pms_status_max_fields>;
81853
- min?: Maybe<listing_pms_status_min_fields>;
81854
- }
81855
-
81856
- /**
81857
- * aggregate max on columns
81858
- */
81859
- export interface listing_pms_status_max_fields {
81860
- __typename?: "listing_pms_status_max_fields";
81861
- name?: Maybe<ScalarsEnums["String"]>;
81862
- }
81863
-
81864
- /**
81865
- * aggregate min on columns
81866
- */
81867
- export interface listing_pms_status_min_fields {
81868
- __typename?: "listing_pms_status_min_fields";
81869
- name?: Maybe<ScalarsEnums["String"]>;
81870
- }
81871
-
81872
- /**
81873
- * response of any mutation on the table "listing_pms_status"
81874
- */
81875
- export interface listing_pms_status_mutation_response {
81876
- __typename?: "listing_pms_status_mutation_response";
81877
- /**
81878
- * number of rows affected by the mutation
81879
- */
81880
- affected_rows: ScalarsEnums["Int"];
81881
- /**
81882
- * data from the rows affected by the mutation
81883
- */
81884
- returning: Array<listing_pms_status>;
81885
- }
81886
-
81887
- /**
81888
- * columns and relationships of "listing_status"
81889
- */
81890
- export interface listing_status {
81891
- __typename?: "listing_status";
81892
- name: ScalarsEnums["String"];
81893
- }
81894
-
81895
- /**
81896
- * aggregated selection of "listing_status"
81897
- */
81898
- export interface listing_status_aggregate {
81899
- __typename?: "listing_status_aggregate";
81900
- aggregate?: Maybe<listing_status_aggregate_fields>;
81901
- nodes: Array<listing_status>;
81902
- }
81903
-
81904
- /**
81905
- * aggregate fields of "listing_status"
81906
- */
81907
- export interface listing_status_aggregate_fields {
81908
- __typename?: "listing_status_aggregate_fields";
81909
- count: (args?: {
81910
- columns?: Maybe<Array<listing_status_select_column>>;
81911
- distinct?: Maybe<Scalars["Boolean"]>;
81912
- }) => ScalarsEnums["Int"];
81913
- max?: Maybe<listing_status_max_fields>;
81914
- min?: Maybe<listing_status_min_fields>;
81915
- }
81916
-
81917
- /**
81918
- * aggregate max on columns
81919
- */
81920
- export interface listing_status_max_fields {
81921
- __typename?: "listing_status_max_fields";
81922
- name?: Maybe<ScalarsEnums["String"]>;
81923
- }
81924
-
81925
- /**
81926
- * aggregate min on columns
81927
- */
81928
- export interface listing_status_min_fields {
81929
- __typename?: "listing_status_min_fields";
81930
- name?: Maybe<ScalarsEnums["String"]>;
81931
- }
81932
-
81933
- /**
81934
- * response of any mutation on the table "listing_status"
81935
- */
81936
- export interface listing_status_mutation_response {
81937
- __typename?: "listing_status_mutation_response";
81938
- /**
81939
- * number of rows affected by the mutation
81940
- */
81941
- affected_rows: ScalarsEnums["Int"];
81942
- /**
81943
- * data from the rows affected by the mutation
81944
- */
81945
- returning: Array<listing_status>;
81946
- }
81947
-
81948
80857
  /**
81949
80858
  * aggregate stddev on columns
81950
80859
  */
@@ -82866,30 +81775,6 @@ export interface Mutation {
82866
81775
  delete_listing_owner_role_by_pk: (args: {
82867
81776
  name: Scalars["String"];
82868
81777
  }) => Maybe<listing_owner_role>;
82869
- delete_listing_pms_status: (args: {
82870
- where: listing_pms_status_bool_exp;
82871
- }) => Maybe<listing_pms_status_mutation_response>;
82872
- delete_listing_pms_status_by_pk: (args: {
82873
- name: Scalars["String"];
82874
- }) => Maybe<listing_pms_status>;
82875
- delete_listing_status: (args: {
82876
- where: listing_status_bool_exp;
82877
- }) => Maybe<listing_status_mutation_response>;
82878
- delete_listing_status_by_pk: (args: {
82879
- name: Scalars["String"];
82880
- }) => Maybe<listing_status>;
82881
- delete_owner_pms_status: (args: {
82882
- where: owner_pms_status_bool_exp;
82883
- }) => Maybe<owner_pms_status_mutation_response>;
82884
- delete_owner_pms_status_by_pk: (args: {
82885
- name: Scalars["String"];
82886
- }) => Maybe<owner_pms_status>;
82887
- delete_owner_status: (args: {
82888
- where: owner_status_bool_exp;
82889
- }) => Maybe<owner_status_mutation_response>;
82890
- delete_owner_status_by_pk: (args: {
82891
- name: Scalars["String"];
82892
- }) => Maybe<owner_status>;
82893
81778
  delete_owner_user_access_role: (args: {
82894
81779
  where: owner_user_access_role_bool_exp;
82895
81780
  }) => Maybe<owner_user_access_role_mutation_response>;
@@ -83834,38 +82719,6 @@ export interface Mutation {
83834
82719
  object: listing_owner_role_insert_input;
83835
82720
  on_conflict?: Maybe<listing_owner_role_on_conflict>;
83836
82721
  }) => Maybe<listing_owner_role>;
83837
- insert_listing_pms_status: (args: {
83838
- objects: Array<listing_pms_status_insert_input>;
83839
- on_conflict?: Maybe<listing_pms_status_on_conflict>;
83840
- }) => Maybe<listing_pms_status_mutation_response>;
83841
- insert_listing_pms_status_one: (args: {
83842
- object: listing_pms_status_insert_input;
83843
- on_conflict?: Maybe<listing_pms_status_on_conflict>;
83844
- }) => Maybe<listing_pms_status>;
83845
- insert_listing_status: (args: {
83846
- objects: Array<listing_status_insert_input>;
83847
- on_conflict?: Maybe<listing_status_on_conflict>;
83848
- }) => Maybe<listing_status_mutation_response>;
83849
- insert_listing_status_one: (args: {
83850
- object: listing_status_insert_input;
83851
- on_conflict?: Maybe<listing_status_on_conflict>;
83852
- }) => Maybe<listing_status>;
83853
- insert_owner_pms_status: (args: {
83854
- objects: Array<owner_pms_status_insert_input>;
83855
- on_conflict?: Maybe<owner_pms_status_on_conflict>;
83856
- }) => Maybe<owner_pms_status_mutation_response>;
83857
- insert_owner_pms_status_one: (args: {
83858
- object: owner_pms_status_insert_input;
83859
- on_conflict?: Maybe<owner_pms_status_on_conflict>;
83860
- }) => Maybe<owner_pms_status>;
83861
- insert_owner_status: (args: {
83862
- objects: Array<owner_status_insert_input>;
83863
- on_conflict?: Maybe<owner_status_on_conflict>;
83864
- }) => Maybe<owner_status_mutation_response>;
83865
- insert_owner_status_one: (args: {
83866
- object: owner_status_insert_input;
83867
- on_conflict?: Maybe<owner_status_on_conflict>;
83868
- }) => Maybe<owner_status>;
83869
82722
  insert_owner_user_access_role: (args: {
83870
82723
  objects: Array<owner_user_access_role_insert_input>;
83871
82724
  on_conflict?: Maybe<owner_user_access_role_on_conflict>;
@@ -85528,39 +84381,6 @@ export interface Mutation {
85528
84381
  update_listing_owner_role_many: (args: {
85529
84382
  updates: Array<listing_owner_role_updates>;
85530
84383
  }) => Maybe<Array<Maybe<listing_owner_role_mutation_response>>>;
85531
- update_listing_pms_status: (args: {
85532
- _set?: Maybe<listing_pms_status_set_input>;
85533
- where: listing_pms_status_bool_exp;
85534
- }) => Maybe<listing_pms_status_mutation_response>;
85535
- update_listing_pms_status_by_pk: (args: {
85536
- _set?: Maybe<listing_pms_status_set_input>;
85537
- pk_columns: listing_pms_status_pk_columns_input;
85538
- }) => Maybe<listing_pms_status>;
85539
- update_listing_pms_status_many: (args: {
85540
- updates: Array<listing_pms_status_updates>;
85541
- }) => Maybe<Array<Maybe<listing_pms_status_mutation_response>>>;
85542
- update_listing_status: (args: {
85543
- _set?: Maybe<listing_status_set_input>;
85544
- where: listing_status_bool_exp;
85545
- }) => Maybe<listing_status_mutation_response>;
85546
- update_listing_status_by_pk: (args: {
85547
- _set?: Maybe<listing_status_set_input>;
85548
- pk_columns: listing_status_pk_columns_input;
85549
- }) => Maybe<listing_status>;
85550
- update_listing_status_many: (args: {
85551
- updates: Array<listing_status_updates>;
85552
- }) => Maybe<Array<Maybe<listing_status_mutation_response>>>;
85553
- update_owner_pms_status: (args: {
85554
- _set?: Maybe<owner_pms_status_set_input>;
85555
- where: owner_pms_status_bool_exp;
85556
- }) => Maybe<owner_pms_status_mutation_response>;
85557
- update_owner_pms_status_by_pk: (args: {
85558
- _set?: Maybe<owner_pms_status_set_input>;
85559
- pk_columns: owner_pms_status_pk_columns_input;
85560
- }) => Maybe<owner_pms_status>;
85561
- update_owner_pms_status_many: (args: {
85562
- updates: Array<owner_pms_status_updates>;
85563
- }) => Maybe<Array<Maybe<owner_pms_status_mutation_response>>>;
85564
84384
  update_owner_statement_line_many: (args: {
85565
84385
  updates: Array<owner_statement_line_updates>;
85566
84386
  }) => Maybe<Array<Maybe<owner_statement_line_mutation_response>>>;
@@ -85570,17 +84390,6 @@ export interface Mutation {
85570
84390
  update_owner_statement_template_many: (args: {
85571
84391
  updates: Array<owner_statement_template_updates>;
85572
84392
  }) => Maybe<Array<Maybe<owner_statement_template_mutation_response>>>;
85573
- update_owner_status: (args: {
85574
- _set?: Maybe<owner_status_set_input>;
85575
- where: owner_status_bool_exp;
85576
- }) => Maybe<owner_status_mutation_response>;
85577
- update_owner_status_by_pk: (args: {
85578
- _set?: Maybe<owner_status_set_input>;
85579
- pk_columns: owner_status_pk_columns_input;
85580
- }) => Maybe<owner_status>;
85581
- update_owner_status_many: (args: {
85582
- updates: Array<owner_status_updates>;
85583
- }) => Maybe<Array<Maybe<owner_status_mutation_response>>>;
85584
84393
  update_owner_user_access_role: (args: {
85585
84394
  _set?: Maybe<owner_user_access_role_set_input>;
85586
84395
  where: owner_user_access_role_bool_exp;
@@ -86030,7 +84839,7 @@ export interface owner {
86030
84839
  where?: Maybe<listing_owner_bool_exp>;
86031
84840
  }) => listing_owner_aggregate;
86032
84841
  phone?: Maybe<ScalarsEnums["String"]>;
86033
- pmsStatus?: Maybe<ScalarsEnums["owner_pms_status_enum"]>;
84842
+ pmsStatus?: Maybe<ScalarsEnums["activeStatus_enum"]>;
86034
84843
  /**
86035
84844
  * An array relationship
86036
84845
  */
@@ -86186,7 +84995,7 @@ export interface owner {
86186
84995
  */
86187
84996
  where?: Maybe<owner_statement_owner_bool_exp>;
86188
84997
  }) => owner_statement_owner_aggregate;
86189
- status?: Maybe<ScalarsEnums["owner_status_enum"]>;
84998
+ status?: Maybe<ScalarsEnums["activeStatus_enum"]>;
86190
84999
  taxId?: Maybe<ScalarsEnums["String"]>;
86191
85000
  /**
86192
85001
  * An array relationship
@@ -86545,67 +85354,6 @@ export interface owner_mutation_response {
86545
85354
  returning: Array<owner>;
86546
85355
  }
86547
85356
 
86548
- /**
86549
- * columns and relationships of "owner_pms_status"
86550
- */
86551
- export interface owner_pms_status {
86552
- __typename?: "owner_pms_status";
86553
- name: ScalarsEnums["String"];
86554
- }
86555
-
86556
- /**
86557
- * aggregated selection of "owner_pms_status"
86558
- */
86559
- export interface owner_pms_status_aggregate {
86560
- __typename?: "owner_pms_status_aggregate";
86561
- aggregate?: Maybe<owner_pms_status_aggregate_fields>;
86562
- nodes: Array<owner_pms_status>;
86563
- }
86564
-
86565
- /**
86566
- * aggregate fields of "owner_pms_status"
86567
- */
86568
- export interface owner_pms_status_aggregate_fields {
86569
- __typename?: "owner_pms_status_aggregate_fields";
86570
- count: (args?: {
86571
- columns?: Maybe<Array<owner_pms_status_select_column>>;
86572
- distinct?: Maybe<Scalars["Boolean"]>;
86573
- }) => ScalarsEnums["Int"];
86574
- max?: Maybe<owner_pms_status_max_fields>;
86575
- min?: Maybe<owner_pms_status_min_fields>;
86576
- }
86577
-
86578
- /**
86579
- * aggregate max on columns
86580
- */
86581
- export interface owner_pms_status_max_fields {
86582
- __typename?: "owner_pms_status_max_fields";
86583
- name?: Maybe<ScalarsEnums["String"]>;
86584
- }
86585
-
86586
- /**
86587
- * aggregate min on columns
86588
- */
86589
- export interface owner_pms_status_min_fields {
86590
- __typename?: "owner_pms_status_min_fields";
86591
- name?: Maybe<ScalarsEnums["String"]>;
86592
- }
86593
-
86594
- /**
86595
- * response of any mutation on the table "owner_pms_status"
86596
- */
86597
- export interface owner_pms_status_mutation_response {
86598
- __typename?: "owner_pms_status_mutation_response";
86599
- /**
86600
- * number of rows affected by the mutation
86601
- */
86602
- affected_rows: ScalarsEnums["Int"];
86603
- /**
86604
- * data from the rows affected by the mutation
86605
- */
86606
- returning: Array<owner_pms_status>;
86607
- }
86608
-
86609
85357
  /**
86610
85358
  * columns and relationships of "owner_statement"
86611
85359
  */
@@ -88340,67 +87088,6 @@ export interface owner_statement_variance_fields {
88340
87088
  centTransfer?: Maybe<ScalarsEnums["Float"]>;
88341
87089
  }
88342
87090
 
88343
- /**
88344
- * columns and relationships of "owner_status"
88345
- */
88346
- export interface owner_status {
88347
- __typename?: "owner_status";
88348
- name: ScalarsEnums["String"];
88349
- }
88350
-
88351
- /**
88352
- * aggregated selection of "owner_status"
88353
- */
88354
- export interface owner_status_aggregate {
88355
- __typename?: "owner_status_aggregate";
88356
- aggregate?: Maybe<owner_status_aggregate_fields>;
88357
- nodes: Array<owner_status>;
88358
- }
88359
-
88360
- /**
88361
- * aggregate fields of "owner_status"
88362
- */
88363
- export interface owner_status_aggregate_fields {
88364
- __typename?: "owner_status_aggregate_fields";
88365
- count: (args?: {
88366
- columns?: Maybe<Array<owner_status_select_column>>;
88367
- distinct?: Maybe<Scalars["Boolean"]>;
88368
- }) => ScalarsEnums["Int"];
88369
- max?: Maybe<owner_status_max_fields>;
88370
- min?: Maybe<owner_status_min_fields>;
88371
- }
88372
-
88373
- /**
88374
- * aggregate max on columns
88375
- */
88376
- export interface owner_status_max_fields {
88377
- __typename?: "owner_status_max_fields";
88378
- name?: Maybe<ScalarsEnums["String"]>;
88379
- }
88380
-
88381
- /**
88382
- * aggregate min on columns
88383
- */
88384
- export interface owner_status_min_fields {
88385
- __typename?: "owner_status_min_fields";
88386
- name?: Maybe<ScalarsEnums["String"]>;
88387
- }
88388
-
88389
- /**
88390
- * response of any mutation on the table "owner_status"
88391
- */
88392
- export interface owner_status_mutation_response {
88393
- __typename?: "owner_status_mutation_response";
88394
- /**
88395
- * number of rows affected by the mutation
88396
- */
88397
- affected_rows: ScalarsEnums["Int"];
88398
- /**
88399
- * data from the rows affected by the mutation
88400
- */
88401
- returning: Array<owner_status>;
88402
- }
88403
-
88404
87091
  /**
88405
87092
  * columns and relationships of "owner_type"
88406
87093
  */
@@ -91319,40 +90006,6 @@ export interface Query {
91319
90006
  listing_owner_role_by_pk: (args: {
91320
90007
  name: Scalars["String"];
91321
90008
  }) => Maybe<listing_owner_role>;
91322
- listing_pms_status: (args?: {
91323
- distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
91324
- limit?: Maybe<Scalars["Int"]>;
91325
- offset?: Maybe<Scalars["Int"]>;
91326
- order_by?: Maybe<Array<listing_pms_status_order_by>>;
91327
- where?: Maybe<listing_pms_status_bool_exp>;
91328
- }) => Array<listing_pms_status>;
91329
- listing_pms_status_aggregate: (args?: {
91330
- distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
91331
- limit?: Maybe<Scalars["Int"]>;
91332
- offset?: Maybe<Scalars["Int"]>;
91333
- order_by?: Maybe<Array<listing_pms_status_order_by>>;
91334
- where?: Maybe<listing_pms_status_bool_exp>;
91335
- }) => listing_pms_status_aggregate;
91336
- listing_pms_status_by_pk: (args: {
91337
- name: Scalars["String"];
91338
- }) => Maybe<listing_pms_status>;
91339
- listing_status: (args?: {
91340
- distinct_on?: Maybe<Array<listing_status_select_column>>;
91341
- limit?: Maybe<Scalars["Int"]>;
91342
- offset?: Maybe<Scalars["Int"]>;
91343
- order_by?: Maybe<Array<listing_status_order_by>>;
91344
- where?: Maybe<listing_status_bool_exp>;
91345
- }) => Array<listing_status>;
91346
- listing_status_aggregate: (args?: {
91347
- distinct_on?: Maybe<Array<listing_status_select_column>>;
91348
- limit?: Maybe<Scalars["Int"]>;
91349
- offset?: Maybe<Scalars["Int"]>;
91350
- order_by?: Maybe<Array<listing_status_order_by>>;
91351
- where?: Maybe<listing_status_bool_exp>;
91352
- }) => listing_status_aggregate;
91353
- listing_status_by_pk: (args: {
91354
- name: Scalars["String"];
91355
- }) => Maybe<listing_status>;
91356
90009
  listings: (args?: {
91357
90010
  distinct_on?: Maybe<Array<listing_select_column>>;
91358
90011
  limit?: Maybe<Scalars["Int"]>;
@@ -91669,40 +90322,6 @@ export interface Query {
91669
90322
  order_by?: Maybe<Array<owner_user_access_order_by>>;
91670
90323
  where?: Maybe<owner_user_access_bool_exp>;
91671
90324
  }) => Array<owner_user_access>;
91672
- owner_pms_status: (args?: {
91673
- distinct_on?: Maybe<Array<owner_pms_status_select_column>>;
91674
- limit?: Maybe<Scalars["Int"]>;
91675
- offset?: Maybe<Scalars["Int"]>;
91676
- order_by?: Maybe<Array<owner_pms_status_order_by>>;
91677
- where?: Maybe<owner_pms_status_bool_exp>;
91678
- }) => Array<owner_pms_status>;
91679
- owner_pms_status_aggregate: (args?: {
91680
- distinct_on?: Maybe<Array<owner_pms_status_select_column>>;
91681
- limit?: Maybe<Scalars["Int"]>;
91682
- offset?: Maybe<Scalars["Int"]>;
91683
- order_by?: Maybe<Array<owner_pms_status_order_by>>;
91684
- where?: Maybe<owner_pms_status_bool_exp>;
91685
- }) => owner_pms_status_aggregate;
91686
- owner_pms_status_by_pk: (args: {
91687
- name: Scalars["String"];
91688
- }) => Maybe<owner_pms_status>;
91689
- owner_status: (args?: {
91690
- distinct_on?: Maybe<Array<owner_status_select_column>>;
91691
- limit?: Maybe<Scalars["Int"]>;
91692
- offset?: Maybe<Scalars["Int"]>;
91693
- order_by?: Maybe<Array<owner_status_order_by>>;
91694
- where?: Maybe<owner_status_bool_exp>;
91695
- }) => Array<owner_status>;
91696
- owner_status_aggregate: (args?: {
91697
- distinct_on?: Maybe<Array<owner_status_select_column>>;
91698
- limit?: Maybe<Scalars["Int"]>;
91699
- offset?: Maybe<Scalars["Int"]>;
91700
- order_by?: Maybe<Array<owner_status_order_by>>;
91701
- where?: Maybe<owner_status_bool_exp>;
91702
- }) => owner_status_aggregate;
91703
- owner_status_by_pk: (args: {
91704
- name: Scalars["String"];
91705
- }) => Maybe<owner_status>;
91706
90325
  owner_user_access_role: (args?: {
91707
90326
  distinct_on?: Maybe<Array<owner_user_access_role_select_column>>;
91708
90327
  limit?: Maybe<Scalars["Int"]>;
@@ -98361,50 +96980,6 @@ export interface Subscription {
98361
96980
  cursor: Array<Maybe<listing_owner_stream_cursor_input>>;
98362
96981
  where?: Maybe<listing_owner_bool_exp>;
98363
96982
  }) => Array<listing_owner>;
98364
- listing_pms_status: (args?: {
98365
- distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
98366
- limit?: Maybe<Scalars["Int"]>;
98367
- offset?: Maybe<Scalars["Int"]>;
98368
- order_by?: Maybe<Array<listing_pms_status_order_by>>;
98369
- where?: Maybe<listing_pms_status_bool_exp>;
98370
- }) => Array<listing_pms_status>;
98371
- listing_pms_status_aggregate: (args?: {
98372
- distinct_on?: Maybe<Array<listing_pms_status_select_column>>;
98373
- limit?: Maybe<Scalars["Int"]>;
98374
- offset?: Maybe<Scalars["Int"]>;
98375
- order_by?: Maybe<Array<listing_pms_status_order_by>>;
98376
- where?: Maybe<listing_pms_status_bool_exp>;
98377
- }) => listing_pms_status_aggregate;
98378
- listing_pms_status_by_pk: (args: {
98379
- name: Scalars["String"];
98380
- }) => Maybe<listing_pms_status>;
98381
- listing_pms_status_stream: (args: {
98382
- batch_size: Scalars["Int"];
98383
- cursor: Array<Maybe<listing_pms_status_stream_cursor_input>>;
98384
- where?: Maybe<listing_pms_status_bool_exp>;
98385
- }) => Array<listing_pms_status>;
98386
- listing_status: (args?: {
98387
- distinct_on?: Maybe<Array<listing_status_select_column>>;
98388
- limit?: Maybe<Scalars["Int"]>;
98389
- offset?: Maybe<Scalars["Int"]>;
98390
- order_by?: Maybe<Array<listing_status_order_by>>;
98391
- where?: Maybe<listing_status_bool_exp>;
98392
- }) => Array<listing_status>;
98393
- listing_status_aggregate: (args?: {
98394
- distinct_on?: Maybe<Array<listing_status_select_column>>;
98395
- limit?: Maybe<Scalars["Int"]>;
98396
- offset?: Maybe<Scalars["Int"]>;
98397
- order_by?: Maybe<Array<listing_status_order_by>>;
98398
- where?: Maybe<listing_status_bool_exp>;
98399
- }) => listing_status_aggregate;
98400
- listing_status_by_pk: (args: {
98401
- name: Scalars["String"];
98402
- }) => Maybe<listing_status>;
98403
- listing_status_stream: (args: {
98404
- batch_size: Scalars["Int"];
98405
- cursor: Array<Maybe<listing_status_stream_cursor_input>>;
98406
- where?: Maybe<listing_status_bool_exp>;
98407
- }) => Array<listing_status>;
98408
96983
  listing_stream: (args: {
98409
96984
  batch_size: Scalars["Int"];
98410
96985
  cursor: Array<Maybe<listing_stream_cursor_input>>;
@@ -98771,28 +97346,6 @@ export interface Subscription {
98771
97346
  order_by?: Maybe<Array<owner_user_access_order_by>>;
98772
97347
  where?: Maybe<owner_user_access_bool_exp>;
98773
97348
  }) => Array<owner_user_access>;
98774
- owner_pms_status: (args?: {
98775
- distinct_on?: Maybe<Array<owner_pms_status_select_column>>;
98776
- limit?: Maybe<Scalars["Int"]>;
98777
- offset?: Maybe<Scalars["Int"]>;
98778
- order_by?: Maybe<Array<owner_pms_status_order_by>>;
98779
- where?: Maybe<owner_pms_status_bool_exp>;
98780
- }) => Array<owner_pms_status>;
98781
- owner_pms_status_aggregate: (args?: {
98782
- distinct_on?: Maybe<Array<owner_pms_status_select_column>>;
98783
- limit?: Maybe<Scalars["Int"]>;
98784
- offset?: Maybe<Scalars["Int"]>;
98785
- order_by?: Maybe<Array<owner_pms_status_order_by>>;
98786
- where?: Maybe<owner_pms_status_bool_exp>;
98787
- }) => owner_pms_status_aggregate;
98788
- owner_pms_status_by_pk: (args: {
98789
- name: Scalars["String"];
98790
- }) => Maybe<owner_pms_status>;
98791
- owner_pms_status_stream: (args: {
98792
- batch_size: Scalars["Int"];
98793
- cursor: Array<Maybe<owner_pms_status_stream_cursor_input>>;
98794
- where?: Maybe<owner_pms_status_bool_exp>;
98795
- }) => Array<owner_pms_status>;
98796
97349
  owner_statement_line_stream: (args: {
98797
97350
  batch_size: Scalars["Int"];
98798
97351
  cursor: Array<Maybe<owner_statement_line_stream_cursor_input>>;
@@ -98808,28 +97361,6 @@ export interface Subscription {
98808
97361
  cursor: Array<Maybe<owner_statement_template_stream_cursor_input>>;
98809
97362
  where?: Maybe<owner_statement_template_bool_exp>;
98810
97363
  }) => Array<owner_statement_template>;
98811
- owner_status: (args?: {
98812
- distinct_on?: Maybe<Array<owner_status_select_column>>;
98813
- limit?: Maybe<Scalars["Int"]>;
98814
- offset?: Maybe<Scalars["Int"]>;
98815
- order_by?: Maybe<Array<owner_status_order_by>>;
98816
- where?: Maybe<owner_status_bool_exp>;
98817
- }) => Array<owner_status>;
98818
- owner_status_aggregate: (args?: {
98819
- distinct_on?: Maybe<Array<owner_status_select_column>>;
98820
- limit?: Maybe<Scalars["Int"]>;
98821
- offset?: Maybe<Scalars["Int"]>;
98822
- order_by?: Maybe<Array<owner_status_order_by>>;
98823
- where?: Maybe<owner_status_bool_exp>;
98824
- }) => owner_status_aggregate;
98825
- owner_status_by_pk: (args: {
98826
- name: Scalars["String"];
98827
- }) => Maybe<owner_status>;
98828
- owner_status_stream: (args: {
98829
- batch_size: Scalars["Int"];
98830
- cursor: Array<Maybe<owner_status_stream_cursor_input>>;
98831
- where?: Maybe<owner_status_bool_exp>;
98832
- }) => Array<owner_status>;
98833
97364
  owner_user_access_role: (args?: {
98834
97365
  distinct_on?: Maybe<Array<owner_user_access_role_select_column>>;
98835
97366
  limit?: Maybe<Scalars["Int"]>;
@@ -106459,18 +104990,6 @@ export interface SchemaObjectTypes {
106459
104990
  listing_owner_var_pop_fields: listing_owner_var_pop_fields;
106460
104991
  listing_owner_var_samp_fields: listing_owner_var_samp_fields;
106461
104992
  listing_owner_variance_fields: listing_owner_variance_fields;
106462
- listing_pms_status: listing_pms_status;
106463
- listing_pms_status_aggregate: listing_pms_status_aggregate;
106464
- listing_pms_status_aggregate_fields: listing_pms_status_aggregate_fields;
106465
- listing_pms_status_max_fields: listing_pms_status_max_fields;
106466
- listing_pms_status_min_fields: listing_pms_status_min_fields;
106467
- listing_pms_status_mutation_response: listing_pms_status_mutation_response;
106468
- listing_status: listing_status;
106469
- listing_status_aggregate: listing_status_aggregate;
106470
- listing_status_aggregate_fields: listing_status_aggregate_fields;
106471
- listing_status_max_fields: listing_status_max_fields;
106472
- listing_status_min_fields: listing_status_min_fields;
106473
- listing_status_mutation_response: listing_status_mutation_response;
106474
104993
  listing_stddev_fields: listing_stddev_fields;
106475
104994
  listing_stddev_pop_fields: listing_stddev_pop_fields;
106476
104995
  listing_stddev_samp_fields: listing_stddev_samp_fields;
@@ -106521,12 +105040,6 @@ export interface SchemaObjectTypes {
106521
105040
  owner_max_fields: owner_max_fields;
106522
105041
  owner_min_fields: owner_min_fields;
106523
105042
  owner_mutation_response: owner_mutation_response;
106524
- owner_pms_status: owner_pms_status;
106525
- owner_pms_status_aggregate: owner_pms_status_aggregate;
106526
- owner_pms_status_aggregate_fields: owner_pms_status_aggregate_fields;
106527
- owner_pms_status_max_fields: owner_pms_status_max_fields;
106528
- owner_pms_status_min_fields: owner_pms_status_min_fields;
106529
- owner_pms_status_mutation_response: owner_pms_status_mutation_response;
106530
105043
  owner_statement: owner_statement;
106531
105044
  owner_statement_aggregate: owner_statement_aggregate;
106532
105045
  owner_statement_aggregate_fields: owner_statement_aggregate_fields;
@@ -106595,12 +105108,6 @@ export interface SchemaObjectTypes {
106595
105108
  owner_statement_var_pop_fields: owner_statement_var_pop_fields;
106596
105109
  owner_statement_var_samp_fields: owner_statement_var_samp_fields;
106597
105110
  owner_statement_variance_fields: owner_statement_variance_fields;
106598
- owner_status: owner_status;
106599
- owner_status_aggregate: owner_status_aggregate;
106600
- owner_status_aggregate_fields: owner_status_aggregate_fields;
106601
- owner_status_max_fields: owner_status_max_fields;
106602
- owner_status_min_fields: owner_status_min_fields;
106603
- owner_status_mutation_response: owner_status_mutation_response;
106604
105111
  owner_type: owner_type;
106605
105112
  owner_type_aggregate: owner_type_aggregate;
106606
105113
  owner_type_aggregate_fields: owner_type_aggregate_fields;
@@ -107537,18 +106044,6 @@ export type SchemaObjectTypesNames =
107537
106044
  | "listing_owner_var_pop_fields"
107538
106045
  | "listing_owner_var_samp_fields"
107539
106046
  | "listing_owner_variance_fields"
107540
- | "listing_pms_status"
107541
- | "listing_pms_status_aggregate"
107542
- | "listing_pms_status_aggregate_fields"
107543
- | "listing_pms_status_max_fields"
107544
- | "listing_pms_status_min_fields"
107545
- | "listing_pms_status_mutation_response"
107546
- | "listing_status"
107547
- | "listing_status_aggregate"
107548
- | "listing_status_aggregate_fields"
107549
- | "listing_status_max_fields"
107550
- | "listing_status_min_fields"
107551
- | "listing_status_mutation_response"
107552
106047
  | "listing_stddev_fields"
107553
106048
  | "listing_stddev_pop_fields"
107554
106049
  | "listing_stddev_samp_fields"
@@ -107599,12 +106094,6 @@ export type SchemaObjectTypesNames =
107599
106094
  | "owner_max_fields"
107600
106095
  | "owner_min_fields"
107601
106096
  | "owner_mutation_response"
107602
- | "owner_pms_status"
107603
- | "owner_pms_status_aggregate"
107604
- | "owner_pms_status_aggregate_fields"
107605
- | "owner_pms_status_max_fields"
107606
- | "owner_pms_status_min_fields"
107607
- | "owner_pms_status_mutation_response"
107608
106097
  | "owner_statement"
107609
106098
  | "owner_statement_aggregate"
107610
106099
  | "owner_statement_aggregate_fields"
@@ -107673,12 +106162,6 @@ export type SchemaObjectTypesNames =
107673
106162
  | "owner_statement_var_pop_fields"
107674
106163
  | "owner_statement_var_samp_fields"
107675
106164
  | "owner_statement_variance_fields"
107676
- | "owner_status"
107677
- | "owner_status_aggregate"
107678
- | "owner_status_aggregate_fields"
107679
- | "owner_status_max_fields"
107680
- | "owner_status_min_fields"
107681
- | "owner_status_mutation_response"
107682
106165
  | "owner_type"
107683
106166
  | "owner_type_aggregate"
107684
106167
  | "owner_type_aggregate_fields"
@@ -108556,19 +107039,7 @@ export interface ScalarsEnums extends Scalars {
108556
107039
  | undefined;
108557
107040
  listing_owner_select_column: listing_owner_select_column | undefined;
108558
107041
  listing_owner_update_column: listing_owner_update_column | undefined;
108559
- listing_pms_status_constraint: listing_pms_status_constraint | undefined;
108560
- listing_pms_status_enum: listing_pms_status_enum | undefined;
108561
- listing_pms_status_select_column:
108562
- | listing_pms_status_select_column
108563
- | undefined;
108564
- listing_pms_status_update_column:
108565
- | listing_pms_status_update_column
108566
- | undefined;
108567
107042
  listing_select_column: listing_select_column | undefined;
108568
- listing_status_constraint: listing_status_constraint | undefined;
108569
- listing_status_enum: listing_status_enum | undefined;
108570
- listing_status_select_column: listing_status_select_column | undefined;
108571
- listing_status_update_column: listing_status_update_column | undefined;
108572
107043
  listing_update_column: listing_update_column | undefined;
108573
107044
  metricsActiveListingCreatedReturnType_enum_name:
108574
107045
  | metricsActiveListingCreatedReturnType_enum_name
@@ -108626,10 +107097,6 @@ export interface ScalarsEnums extends Scalars {
108626
107097
  | ownerStatementLayoutListing_update_column
108627
107098
  | undefined;
108628
107099
  owner_constraint: owner_constraint | undefined;
108629
- owner_pms_status_constraint: owner_pms_status_constraint | undefined;
108630
- owner_pms_status_enum: owner_pms_status_enum | undefined;
108631
- owner_pms_status_select_column: owner_pms_status_select_column | undefined;
108632
- owner_pms_status_update_column: owner_pms_status_update_column | undefined;
108633
107100
  owner_select_column: owner_select_column | undefined;
108634
107101
  owner_select_column_owner_aggregate_bool_exp_bool_and_arguments_columns:
108635
107102
  | owner_select_column_owner_aggregate_bool_exp_bool_and_arguments_columns
@@ -108690,10 +107157,6 @@ export interface ScalarsEnums extends Scalars {
108690
107157
  | owner_statement_template_update_column
108691
107158
  | undefined;
108692
107159
  owner_statement_update_column: owner_statement_update_column | undefined;
108693
- owner_status_constraint: owner_status_constraint | undefined;
108694
- owner_status_enum: owner_status_enum | undefined;
108695
- owner_status_select_column: owner_status_select_column | undefined;
108696
- owner_status_update_column: owner_status_update_column | undefined;
108697
107160
  owner_type_constraint: owner_type_constraint | undefined;
108698
107161
  owner_type_enum: owner_type_enum | undefined;
108699
107162
  owner_type_select_column: owner_type_select_column | undefined;