@vrplatform/graphql 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/main/constants.d.ts +1 -1
- package/build/main/constants.js +1 -1
- package/build/main/gqty/schema.generated.d.ts +174 -821
- package/build/main/gqty/schema.generated.js +81 -319
- package/build/module/constants.d.ts +1 -1
- package/build/module/constants.js +1 -1
- package/build/module/gqty/schema.generated.d.ts +174 -821
- package/build/module/gqty/schema.generated.js +81 -319
- package/package.json +1 -1
- package/src/constants.ts +1 -1
- package/src/gqty/schema.generated.d.ts +174 -821
- package/src/gqty/schema.generated.js +81 -319
|
@@ -23,7 +23,6 @@ export interface Scalars {
|
|
|
23
23
|
bigint: number;
|
|
24
24
|
date: string;
|
|
25
25
|
effect_status: any;
|
|
26
|
-
float8: number;
|
|
27
26
|
json: any;
|
|
28
27
|
jsonb: any;
|
|
29
28
|
numeric: number;
|
|
@@ -9297,19 +9296,6 @@ export interface file_storage_updates {
|
|
|
9297
9296
|
where: file_storage_bool_exp;
|
|
9298
9297
|
}
|
|
9299
9298
|
|
|
9300
|
-
/** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */
|
|
9301
|
-
export interface float8_comparison_exp {
|
|
9302
|
-
_eq?: InputMaybe<Scalars["float8"]>;
|
|
9303
|
-
_gt?: InputMaybe<Scalars["float8"]>;
|
|
9304
|
-
_gte?: InputMaybe<Scalars["float8"]>;
|
|
9305
|
-
_in?: InputMaybe<Array<Scalars["float8"]>>;
|
|
9306
|
-
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
9307
|
-
_lt?: InputMaybe<Scalars["float8"]>;
|
|
9308
|
-
_lte?: InputMaybe<Scalars["float8"]>;
|
|
9309
|
-
_neq?: InputMaybe<Scalars["float8"]>;
|
|
9310
|
-
_nin?: InputMaybe<Array<Scalars["float8"]>>;
|
|
9311
|
-
}
|
|
9312
|
-
|
|
9313
9299
|
/** Boolean expression to filter rows from the logical model for "issueConnectionsNeedVersionUpgradeReturnType". All fields are combined with a logical 'AND'. */
|
|
9314
9300
|
export interface issueConnectionsNeedVersionUpgradeReturnType_bool_exp_bool_exp {
|
|
9315
9301
|
_and?: InputMaybe<
|
|
@@ -12664,219 +12650,6 @@ export interface listing_variance_order_by {
|
|
|
12664
12650
|
centTaxStartingBalance?: InputMaybe<order_by>;
|
|
12665
12651
|
}
|
|
12666
12652
|
|
|
12667
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
12668
|
-
export interface metric_append_input {
|
|
12669
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12670
|
-
}
|
|
12671
|
-
|
|
12672
|
-
/** Boolean expression to filter rows from the table "metric". All fields are combined with a logical 'AND'. */
|
|
12673
|
-
export interface metric_bool_exp {
|
|
12674
|
-
_and?: InputMaybe<Array<metric_bool_exp>>;
|
|
12675
|
-
_not?: InputMaybe<metric_bool_exp>;
|
|
12676
|
-
_or?: InputMaybe<Array<metric_bool_exp>>;
|
|
12677
|
-
connection?: InputMaybe<connection_bool_exp>;
|
|
12678
|
-
connectionId?: InputMaybe<uuid_comparison_exp>;
|
|
12679
|
-
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
12680
|
-
date?: InputMaybe<timestamptz_comparison_exp>;
|
|
12681
|
-
id?: InputMaybe<uuid_comparison_exp>;
|
|
12682
|
-
listingConnection?: InputMaybe<listing_connection_bool_exp>;
|
|
12683
|
-
listingConnectionId?: InputMaybe<uuid_comparison_exp>;
|
|
12684
|
-
metadata?: InputMaybe<jsonb_comparison_exp>;
|
|
12685
|
-
tenant?: InputMaybe<tenant_bool_exp>;
|
|
12686
|
-
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
12687
|
-
type?: InputMaybe<String_comparison_exp>;
|
|
12688
|
-
uniqueRef?: InputMaybe<String_comparison_exp>;
|
|
12689
|
-
updatedAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
12690
|
-
value?: InputMaybe<float8_comparison_exp>;
|
|
12691
|
-
}
|
|
12692
|
-
|
|
12693
|
-
/** unique or primary key constraints on table "metric" */
|
|
12694
|
-
export type metric_constraint =
|
|
12695
|
-
/** unique or primary key constraint on columns "unique_ref", "connection_id" */
|
|
12696
|
-
| "metric_connection_id_unique_ref_key"
|
|
12697
|
-
/** unique or primary key constraint on columns "id" */
|
|
12698
|
-
| "metric_pkey";
|
|
12699
|
-
|
|
12700
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
12701
|
-
export interface metric_delete_at_path_input {
|
|
12702
|
-
metadata?: InputMaybe<Array<Scalars["String"]>>;
|
|
12703
|
-
}
|
|
12704
|
-
|
|
12705
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
12706
|
-
export interface metric_delete_elem_input {
|
|
12707
|
-
metadata?: InputMaybe<Scalars["Int"]>;
|
|
12708
|
-
}
|
|
12709
|
-
|
|
12710
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
12711
|
-
export interface metric_delete_key_input {
|
|
12712
|
-
metadata?: InputMaybe<Scalars["String"]>;
|
|
12713
|
-
}
|
|
12714
|
-
|
|
12715
|
-
/** input type for incrementing numeric columns in table "metric" */
|
|
12716
|
-
export interface metric_inc_input {
|
|
12717
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12718
|
-
}
|
|
12719
|
-
|
|
12720
|
-
/** input type for inserting data into table "metric" */
|
|
12721
|
-
export interface metric_insert_input {
|
|
12722
|
-
connection?: InputMaybe<connection_obj_rel_insert_input>;
|
|
12723
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12724
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12725
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
12726
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
12727
|
-
listingConnection?: InputMaybe<listing_connection_obj_rel_insert_input>;
|
|
12728
|
-
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12729
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12730
|
-
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
12731
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12732
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
12733
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
12734
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12735
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12736
|
-
}
|
|
12737
|
-
|
|
12738
|
-
/** on_conflict condition type for table "metric" */
|
|
12739
|
-
export interface metric_on_conflict {
|
|
12740
|
-
constraint: metric_constraint;
|
|
12741
|
-
update_columns?: Array<metric_update_column>;
|
|
12742
|
-
where?: InputMaybe<metric_bool_exp>;
|
|
12743
|
-
}
|
|
12744
|
-
|
|
12745
|
-
/** Ordering options when selecting data from "metric". */
|
|
12746
|
-
export interface metric_order_by {
|
|
12747
|
-
connection?: InputMaybe<connection_order_by>;
|
|
12748
|
-
connectionId?: InputMaybe<order_by>;
|
|
12749
|
-
createdAt?: InputMaybe<order_by>;
|
|
12750
|
-
date?: InputMaybe<order_by>;
|
|
12751
|
-
id?: InputMaybe<order_by>;
|
|
12752
|
-
listingConnection?: InputMaybe<listing_connection_order_by>;
|
|
12753
|
-
listingConnectionId?: InputMaybe<order_by>;
|
|
12754
|
-
metadata?: InputMaybe<order_by>;
|
|
12755
|
-
tenant?: InputMaybe<tenant_order_by>;
|
|
12756
|
-
tenantId?: InputMaybe<order_by>;
|
|
12757
|
-
type?: InputMaybe<order_by>;
|
|
12758
|
-
uniqueRef?: InputMaybe<order_by>;
|
|
12759
|
-
updatedAt?: InputMaybe<order_by>;
|
|
12760
|
-
value?: InputMaybe<order_by>;
|
|
12761
|
-
}
|
|
12762
|
-
|
|
12763
|
-
/** primary key columns input for table: metric */
|
|
12764
|
-
export interface metric_pk_columns_input {
|
|
12765
|
-
id: Scalars["uuid"];
|
|
12766
|
-
}
|
|
12767
|
-
|
|
12768
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
12769
|
-
export interface metric_prepend_input {
|
|
12770
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12771
|
-
}
|
|
12772
|
-
|
|
12773
|
-
/** select columns of table "metric" */
|
|
12774
|
-
export type metric_select_column =
|
|
12775
|
-
/** column name */
|
|
12776
|
-
| "connectionId"
|
|
12777
|
-
/** column name */
|
|
12778
|
-
| "createdAt"
|
|
12779
|
-
/** column name */
|
|
12780
|
-
| "date"
|
|
12781
|
-
/** column name */
|
|
12782
|
-
| "id"
|
|
12783
|
-
/** column name */
|
|
12784
|
-
| "listingConnectionId"
|
|
12785
|
-
/** column name */
|
|
12786
|
-
| "metadata"
|
|
12787
|
-
/** column name */
|
|
12788
|
-
| "tenantId"
|
|
12789
|
-
/** column name */
|
|
12790
|
-
| "type"
|
|
12791
|
-
/** column name */
|
|
12792
|
-
| "uniqueRef"
|
|
12793
|
-
/** column name */
|
|
12794
|
-
| "updatedAt"
|
|
12795
|
-
/** column name */
|
|
12796
|
-
| "value";
|
|
12797
|
-
|
|
12798
|
-
/** input type for updating data in table "metric" */
|
|
12799
|
-
export interface metric_set_input {
|
|
12800
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12801
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12802
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
12803
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
12804
|
-
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12805
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12806
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12807
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
12808
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
12809
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12810
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12811
|
-
}
|
|
12812
|
-
|
|
12813
|
-
/** Streaming cursor of the table "metric" */
|
|
12814
|
-
export interface metric_stream_cursor_input {
|
|
12815
|
-
/** Stream column input with initial value */
|
|
12816
|
-
initial_value: metric_stream_cursor_value_input;
|
|
12817
|
-
/** cursor ordering */
|
|
12818
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
12819
|
-
}
|
|
12820
|
-
|
|
12821
|
-
/** Initial value of the column from where the streaming should start */
|
|
12822
|
-
export interface metric_stream_cursor_value_input {
|
|
12823
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12824
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12825
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
12826
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
12827
|
-
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12828
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12829
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12830
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
12831
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
12832
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12833
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12834
|
-
}
|
|
12835
|
-
|
|
12836
|
-
/** update columns of table "metric" */
|
|
12837
|
-
export type metric_update_column =
|
|
12838
|
-
/** column name */
|
|
12839
|
-
| "connectionId"
|
|
12840
|
-
/** column name */
|
|
12841
|
-
| "createdAt"
|
|
12842
|
-
/** column name */
|
|
12843
|
-
| "date"
|
|
12844
|
-
/** column name */
|
|
12845
|
-
| "id"
|
|
12846
|
-
/** column name */
|
|
12847
|
-
| "listingConnectionId"
|
|
12848
|
-
/** column name */
|
|
12849
|
-
| "metadata"
|
|
12850
|
-
/** column name */
|
|
12851
|
-
| "tenantId"
|
|
12852
|
-
/** column name */
|
|
12853
|
-
| "type"
|
|
12854
|
-
/** column name */
|
|
12855
|
-
| "uniqueRef"
|
|
12856
|
-
/** column name */
|
|
12857
|
-
| "updatedAt"
|
|
12858
|
-
/** column name */
|
|
12859
|
-
| "value";
|
|
12860
|
-
|
|
12861
|
-
export interface metric_updates {
|
|
12862
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
12863
|
-
_append?: InputMaybe<metric_append_input>;
|
|
12864
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
12865
|
-
_delete_at_path?: InputMaybe<metric_delete_at_path_input>;
|
|
12866
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
12867
|
-
_delete_elem?: InputMaybe<metric_delete_elem_input>;
|
|
12868
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
12869
|
-
_delete_key?: InputMaybe<metric_delete_key_input>;
|
|
12870
|
-
/** increments the numeric columns with given value of the filtered values */
|
|
12871
|
-
_inc?: InputMaybe<metric_inc_input>;
|
|
12872
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
12873
|
-
_prepend?: InputMaybe<metric_prepend_input>;
|
|
12874
|
-
/** sets the columns of the filtered rows to the given values */
|
|
12875
|
-
_set?: InputMaybe<metric_set_input>;
|
|
12876
|
-
/** filter the rows which have to be updated */
|
|
12877
|
-
where: metric_bool_exp;
|
|
12878
|
-
}
|
|
12879
|
-
|
|
12880
12653
|
/** Boolean expression to filter rows from the logical model for "metricsActiveListingCreatedReturnType". All fields are combined with a logical 'AND'. */
|
|
12881
12654
|
export interface metricsActiveListingCreatedReturnType_bool_exp_bool_exp {
|
|
12882
12655
|
_and?: InputMaybe<
|
|
@@ -14416,9 +14189,12 @@ export interface owner_statement_avg_order_by {
|
|
|
14416
14189
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
14417
14190
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
14418
14191
|
centBalanceStart?: InputMaybe<order_by>;
|
|
14192
|
+
centExpenses?: InputMaybe<order_by>;
|
|
14193
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
14419
14194
|
centPayedOut?: InputMaybe<order_by>;
|
|
14420
14195
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
14421
14196
|
centTotal?: InputMaybe<order_by>;
|
|
14197
|
+
centTransfer?: InputMaybe<order_by>;
|
|
14422
14198
|
}
|
|
14423
14199
|
|
|
14424
14200
|
/** Boolean expression to filter rows from the table "owner_statement". All fields are combined with a logical 'AND'. */
|
|
@@ -14434,9 +14210,12 @@ export interface owner_statement_bool_exp {
|
|
|
14434
14210
|
centAccountingBalanceStart?: InputMaybe<Int_comparison_exp>;
|
|
14435
14211
|
centBalanceEnd?: InputMaybe<bigint_comparison_exp>;
|
|
14436
14212
|
centBalanceStart?: InputMaybe<bigint_comparison_exp>;
|
|
14213
|
+
centExpenses?: InputMaybe<bigint_comparison_exp>;
|
|
14214
|
+
centNetRevenue?: InputMaybe<bigint_comparison_exp>;
|
|
14437
14215
|
centPayedOut?: InputMaybe<Int_comparison_exp>;
|
|
14438
14216
|
centRentalRevenue?: InputMaybe<Int_comparison_exp>;
|
|
14439
14217
|
centTotal?: InputMaybe<bigint_comparison_exp>;
|
|
14218
|
+
centTransfer?: InputMaybe<bigint_comparison_exp>;
|
|
14440
14219
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
14441
14220
|
currency?: InputMaybe<currency_enum_comparison_exp>;
|
|
14442
14221
|
endAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
@@ -14510,9 +14289,12 @@ export interface owner_statement_inc_input {
|
|
|
14510
14289
|
centAccountingBalanceStart?: InputMaybe<Scalars["Int"]>;
|
|
14511
14290
|
centBalanceEnd?: InputMaybe<Scalars["bigint"]>;
|
|
14512
14291
|
centBalanceStart?: InputMaybe<Scalars["bigint"]>;
|
|
14292
|
+
centExpenses?: InputMaybe<Scalars["bigint"]>;
|
|
14293
|
+
centNetRevenue?: InputMaybe<Scalars["bigint"]>;
|
|
14513
14294
|
centPayedOut?: InputMaybe<Scalars["Int"]>;
|
|
14514
14295
|
centRentalRevenue?: InputMaybe<Scalars["Int"]>;
|
|
14515
14296
|
centTotal?: InputMaybe<Scalars["bigint"]>;
|
|
14297
|
+
centTransfer?: InputMaybe<Scalars["bigint"]>;
|
|
14516
14298
|
}
|
|
14517
14299
|
|
|
14518
14300
|
/** input type for inserting data into table "owner_statement" */
|
|
@@ -14524,9 +14306,12 @@ export interface owner_statement_insert_input {
|
|
|
14524
14306
|
centAccountingBalanceStart?: InputMaybe<Scalars["Int"]>;
|
|
14525
14307
|
centBalanceEnd?: InputMaybe<Scalars["bigint"]>;
|
|
14526
14308
|
centBalanceStart?: InputMaybe<Scalars["bigint"]>;
|
|
14309
|
+
centExpenses?: InputMaybe<Scalars["bigint"]>;
|
|
14310
|
+
centNetRevenue?: InputMaybe<Scalars["bigint"]>;
|
|
14527
14311
|
centPayedOut?: InputMaybe<Scalars["Int"]>;
|
|
14528
14312
|
centRentalRevenue?: InputMaybe<Scalars["Int"]>;
|
|
14529
14313
|
centTotal?: InputMaybe<Scalars["bigint"]>;
|
|
14314
|
+
centTransfer?: InputMaybe<Scalars["bigint"]>;
|
|
14530
14315
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
14531
14316
|
currency?: InputMaybe<currency_enum>;
|
|
14532
14317
|
endAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -15205,9 +14990,12 @@ export interface owner_statement_max_order_by {
|
|
|
15205
14990
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
15206
14991
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
15207
14992
|
centBalanceStart?: InputMaybe<order_by>;
|
|
14993
|
+
centExpenses?: InputMaybe<order_by>;
|
|
14994
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
15208
14995
|
centPayedOut?: InputMaybe<order_by>;
|
|
15209
14996
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
15210
14997
|
centTotal?: InputMaybe<order_by>;
|
|
14998
|
+
centTransfer?: InputMaybe<order_by>;
|
|
15211
14999
|
createdAt?: InputMaybe<order_by>;
|
|
15212
15000
|
endAt?: InputMaybe<order_by>;
|
|
15213
15001
|
id?: InputMaybe<order_by>;
|
|
@@ -15230,9 +15018,12 @@ export interface owner_statement_min_order_by {
|
|
|
15230
15018
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
15231
15019
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
15232
15020
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15021
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15022
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
15233
15023
|
centPayedOut?: InputMaybe<order_by>;
|
|
15234
15024
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
15235
15025
|
centTotal?: InputMaybe<order_by>;
|
|
15026
|
+
centTransfer?: InputMaybe<order_by>;
|
|
15236
15027
|
createdAt?: InputMaybe<order_by>;
|
|
15237
15028
|
endAt?: InputMaybe<order_by>;
|
|
15238
15029
|
id?: InputMaybe<order_by>;
|
|
@@ -15271,9 +15062,12 @@ export interface owner_statement_order_by {
|
|
|
15271
15062
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
15272
15063
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
15273
15064
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15065
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15066
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
15274
15067
|
centPayedOut?: InputMaybe<order_by>;
|
|
15275
15068
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
15276
15069
|
centTotal?: InputMaybe<order_by>;
|
|
15070
|
+
centTransfer?: InputMaybe<order_by>;
|
|
15277
15071
|
createdAt?: InputMaybe<order_by>;
|
|
15278
15072
|
currency?: InputMaybe<order_by>;
|
|
15279
15073
|
endAt?: InputMaybe<order_by>;
|
|
@@ -15598,12 +15392,18 @@ export type owner_statement_select_column =
|
|
|
15598
15392
|
/** column name */
|
|
15599
15393
|
| "centBalanceStart"
|
|
15600
15394
|
/** column name */
|
|
15395
|
+
| "centExpenses"
|
|
15396
|
+
/** column name */
|
|
15397
|
+
| "centNetRevenue"
|
|
15398
|
+
/** column name */
|
|
15601
15399
|
| "centPayedOut"
|
|
15602
15400
|
/** column name */
|
|
15603
15401
|
| "centRentalRevenue"
|
|
15604
15402
|
/** column name */
|
|
15605
15403
|
| "centTotal"
|
|
15606
15404
|
/** column name */
|
|
15405
|
+
| "centTransfer"
|
|
15406
|
+
/** column name */
|
|
15607
15407
|
| "createdAt"
|
|
15608
15408
|
/** column name */
|
|
15609
15409
|
| "currency"
|
|
@@ -15647,9 +15447,12 @@ export interface owner_statement_set_input {
|
|
|
15647
15447
|
centAccountingBalanceStart?: InputMaybe<Scalars["Int"]>;
|
|
15648
15448
|
centBalanceEnd?: InputMaybe<Scalars["bigint"]>;
|
|
15649
15449
|
centBalanceStart?: InputMaybe<Scalars["bigint"]>;
|
|
15450
|
+
centExpenses?: InputMaybe<Scalars["bigint"]>;
|
|
15451
|
+
centNetRevenue?: InputMaybe<Scalars["bigint"]>;
|
|
15650
15452
|
centPayedOut?: InputMaybe<Scalars["Int"]>;
|
|
15651
15453
|
centRentalRevenue?: InputMaybe<Scalars["Int"]>;
|
|
15652
15454
|
centTotal?: InputMaybe<Scalars["bigint"]>;
|
|
15455
|
+
centTransfer?: InputMaybe<Scalars["bigint"]>;
|
|
15653
15456
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
15654
15457
|
currency?: InputMaybe<currency_enum>;
|
|
15655
15458
|
endAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -15762,9 +15565,12 @@ export interface owner_statement_stddev_order_by {
|
|
|
15762
15565
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
15763
15566
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
15764
15567
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15568
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15569
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
15765
15570
|
centPayedOut?: InputMaybe<order_by>;
|
|
15766
15571
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
15767
15572
|
centTotal?: InputMaybe<order_by>;
|
|
15573
|
+
centTransfer?: InputMaybe<order_by>;
|
|
15768
15574
|
}
|
|
15769
15575
|
|
|
15770
15576
|
/** order by stddev_pop() on columns of table "owner_statement" */
|
|
@@ -15773,9 +15579,12 @@ export interface owner_statement_stddev_pop_order_by {
|
|
|
15773
15579
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
15774
15580
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
15775
15581
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15582
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15583
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
15776
15584
|
centPayedOut?: InputMaybe<order_by>;
|
|
15777
15585
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
15778
15586
|
centTotal?: InputMaybe<order_by>;
|
|
15587
|
+
centTransfer?: InputMaybe<order_by>;
|
|
15779
15588
|
}
|
|
15780
15589
|
|
|
15781
15590
|
/** order by stddev_samp() on columns of table "owner_statement" */
|
|
@@ -15784,9 +15593,12 @@ export interface owner_statement_stddev_samp_order_by {
|
|
|
15784
15593
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
15785
15594
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
15786
15595
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15596
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15597
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
15787
15598
|
centPayedOut?: InputMaybe<order_by>;
|
|
15788
15599
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
15789
15600
|
centTotal?: InputMaybe<order_by>;
|
|
15601
|
+
centTransfer?: InputMaybe<order_by>;
|
|
15790
15602
|
}
|
|
15791
15603
|
|
|
15792
15604
|
/** Streaming cursor of the table "owner_statement" */
|
|
@@ -15804,9 +15616,12 @@ export interface owner_statement_stream_cursor_value_input {
|
|
|
15804
15616
|
centAccountingBalanceStart?: InputMaybe<Scalars["Int"]>;
|
|
15805
15617
|
centBalanceEnd?: InputMaybe<Scalars["bigint"]>;
|
|
15806
15618
|
centBalanceStart?: InputMaybe<Scalars["bigint"]>;
|
|
15619
|
+
centExpenses?: InputMaybe<Scalars["bigint"]>;
|
|
15620
|
+
centNetRevenue?: InputMaybe<Scalars["bigint"]>;
|
|
15807
15621
|
centPayedOut?: InputMaybe<Scalars["Int"]>;
|
|
15808
15622
|
centRentalRevenue?: InputMaybe<Scalars["Int"]>;
|
|
15809
15623
|
centTotal?: InputMaybe<Scalars["bigint"]>;
|
|
15624
|
+
centTransfer?: InputMaybe<Scalars["bigint"]>;
|
|
15810
15625
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
15811
15626
|
currency?: InputMaybe<currency_enum>;
|
|
15812
15627
|
endAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -15833,9 +15648,12 @@ export interface owner_statement_sum_order_by {
|
|
|
15833
15648
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
15834
15649
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
15835
15650
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15651
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15652
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
15836
15653
|
centPayedOut?: InputMaybe<order_by>;
|
|
15837
15654
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
15838
15655
|
centTotal?: InputMaybe<order_by>;
|
|
15656
|
+
centTransfer?: InputMaybe<order_by>;
|
|
15839
15657
|
}
|
|
15840
15658
|
|
|
15841
15659
|
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
@@ -16047,12 +15865,18 @@ export type owner_statement_update_column =
|
|
|
16047
15865
|
/** column name */
|
|
16048
15866
|
| "centBalanceStart"
|
|
16049
15867
|
/** column name */
|
|
15868
|
+
| "centExpenses"
|
|
15869
|
+
/** column name */
|
|
15870
|
+
| "centNetRevenue"
|
|
15871
|
+
/** column name */
|
|
16050
15872
|
| "centPayedOut"
|
|
16051
15873
|
/** column name */
|
|
16052
15874
|
| "centRentalRevenue"
|
|
16053
15875
|
/** column name */
|
|
16054
15876
|
| "centTotal"
|
|
16055
15877
|
/** column name */
|
|
15878
|
+
| "centTransfer"
|
|
15879
|
+
/** column name */
|
|
16056
15880
|
| "createdAt"
|
|
16057
15881
|
/** column name */
|
|
16058
15882
|
| "currency"
|
|
@@ -16114,9 +15938,12 @@ export interface owner_statement_var_pop_order_by {
|
|
|
16114
15938
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
16115
15939
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
16116
15940
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15941
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15942
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
16117
15943
|
centPayedOut?: InputMaybe<order_by>;
|
|
16118
15944
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
16119
15945
|
centTotal?: InputMaybe<order_by>;
|
|
15946
|
+
centTransfer?: InputMaybe<order_by>;
|
|
16120
15947
|
}
|
|
16121
15948
|
|
|
16122
15949
|
/** order by var_samp() on columns of table "owner_statement" */
|
|
@@ -16125,9 +15952,12 @@ export interface owner_statement_var_samp_order_by {
|
|
|
16125
15952
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
16126
15953
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
16127
15954
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15955
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15956
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
16128
15957
|
centPayedOut?: InputMaybe<order_by>;
|
|
16129
15958
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
16130
15959
|
centTotal?: InputMaybe<order_by>;
|
|
15960
|
+
centTransfer?: InputMaybe<order_by>;
|
|
16131
15961
|
}
|
|
16132
15962
|
|
|
16133
15963
|
/** order by variance() on columns of table "owner_statement" */
|
|
@@ -16136,9 +15966,12 @@ export interface owner_statement_variance_order_by {
|
|
|
16136
15966
|
centAccountingBalanceStart?: InputMaybe<order_by>;
|
|
16137
15967
|
centBalanceEnd?: InputMaybe<order_by>;
|
|
16138
15968
|
centBalanceStart?: InputMaybe<order_by>;
|
|
15969
|
+
centExpenses?: InputMaybe<order_by>;
|
|
15970
|
+
centNetRevenue?: InputMaybe<order_by>;
|
|
16139
15971
|
centPayedOut?: InputMaybe<order_by>;
|
|
16140
15972
|
centRentalRevenue?: InputMaybe<order_by>;
|
|
16141
15973
|
centTotal?: InputMaybe<order_by>;
|
|
15974
|
+
centTransfer?: InputMaybe<order_by>;
|
|
16142
15975
|
}
|
|
16143
15976
|
|
|
16144
15977
|
/** Boolean expression to filter rows from the table "owner_status". All fields are combined with a logical 'AND'. */
|
|
@@ -38012,17 +37845,6 @@ export declare const generatedSchema: {
|
|
|
38012
37845
|
_set: { __type: "file_storage_set_input" };
|
|
38013
37846
|
where: { __type: "file_storage_bool_exp!" };
|
|
38014
37847
|
};
|
|
38015
|
-
float8_comparison_exp: {
|
|
38016
|
-
_eq: { __type: "float8" };
|
|
38017
|
-
_gt: { __type: "float8" };
|
|
38018
|
-
_gte: { __type: "float8" };
|
|
38019
|
-
_in: { __type: "[float8!]" };
|
|
38020
|
-
_is_null: { __type: "Boolean" };
|
|
38021
|
-
_lt: { __type: "float8" };
|
|
38022
|
-
_lte: { __type: "float8" };
|
|
38023
|
-
_neq: { __type: "float8" };
|
|
38024
|
-
_nin: { __type: "[float8!]" };
|
|
38025
|
-
};
|
|
38026
37848
|
issueConnectionsNeedVersionUpgradeReturnType: {
|
|
38027
37849
|
__typename: { __type: "String!" };
|
|
38028
37850
|
appIcon: { __type: "String!" };
|
|
@@ -41642,211 +41464,6 @@ export declare const generatedSchema: {
|
|
|
41642
41464
|
centExpenseReserve: { __type: "order_by" };
|
|
41643
41465
|
centTaxStartingBalance: { __type: "order_by" };
|
|
41644
41466
|
};
|
|
41645
|
-
metric: {
|
|
41646
|
-
__typename: { __type: "String!" };
|
|
41647
|
-
connection: { __type: "connection!" };
|
|
41648
|
-
connectionId: { __type: "uuid!" };
|
|
41649
|
-
createdAt: { __type: "timestamptz!" };
|
|
41650
|
-
date: { __type: "timestamptz!" };
|
|
41651
|
-
id: { __type: "uuid!" };
|
|
41652
|
-
listingConnection: { __type: "listing_connection" };
|
|
41653
|
-
listingConnectionId: { __type: "uuid" };
|
|
41654
|
-
metadata: { __type: "jsonb!"; __args: { path: "String" } };
|
|
41655
|
-
tenant: { __type: "tenant!" };
|
|
41656
|
-
tenantId: { __type: "uuid!" };
|
|
41657
|
-
type: { __type: "String!" };
|
|
41658
|
-
uniqueRef: { __type: "String" };
|
|
41659
|
-
updatedAt: { __type: "timestamptz!" };
|
|
41660
|
-
value: { __type: "float8" };
|
|
41661
|
-
};
|
|
41662
|
-
metric_aggregate: {
|
|
41663
|
-
__typename: { __type: "String!" };
|
|
41664
|
-
aggregate: { __type: "metric_aggregate_fields" };
|
|
41665
|
-
nodes: { __type: "[metric!]!" };
|
|
41666
|
-
};
|
|
41667
|
-
metric_aggregate_fields: {
|
|
41668
|
-
__typename: { __type: "String!" };
|
|
41669
|
-
avg: { __type: "metric_avg_fields" };
|
|
41670
|
-
count: {
|
|
41671
|
-
__type: "Int!";
|
|
41672
|
-
__args: { columns: "[metric_select_column!]"; distinct: "Boolean" };
|
|
41673
|
-
};
|
|
41674
|
-
max: { __type: "metric_max_fields" };
|
|
41675
|
-
min: { __type: "metric_min_fields" };
|
|
41676
|
-
stddev: { __type: "metric_stddev_fields" };
|
|
41677
|
-
stddev_pop: { __type: "metric_stddev_pop_fields" };
|
|
41678
|
-
stddev_samp: { __type: "metric_stddev_samp_fields" };
|
|
41679
|
-
sum: { __type: "metric_sum_fields" };
|
|
41680
|
-
var_pop: { __type: "metric_var_pop_fields" };
|
|
41681
|
-
var_samp: { __type: "metric_var_samp_fields" };
|
|
41682
|
-
variance: { __type: "metric_variance_fields" };
|
|
41683
|
-
};
|
|
41684
|
-
metric_append_input: { metadata: { __type: "jsonb" } };
|
|
41685
|
-
metric_avg_fields: {
|
|
41686
|
-
__typename: { __type: "String!" };
|
|
41687
|
-
value: { __type: "Float" };
|
|
41688
|
-
};
|
|
41689
|
-
metric_bool_exp: {
|
|
41690
|
-
_and: { __type: "[metric_bool_exp!]" };
|
|
41691
|
-
_not: { __type: "metric_bool_exp" };
|
|
41692
|
-
_or: { __type: "[metric_bool_exp!]" };
|
|
41693
|
-
connection: { __type: "connection_bool_exp" };
|
|
41694
|
-
connectionId: { __type: "uuid_comparison_exp" };
|
|
41695
|
-
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
41696
|
-
date: { __type: "timestamptz_comparison_exp" };
|
|
41697
|
-
id: { __type: "uuid_comparison_exp" };
|
|
41698
|
-
listingConnection: { __type: "listing_connection_bool_exp" };
|
|
41699
|
-
listingConnectionId: { __type: "uuid_comparison_exp" };
|
|
41700
|
-
metadata: { __type: "jsonb_comparison_exp" };
|
|
41701
|
-
tenant: { __type: "tenant_bool_exp" };
|
|
41702
|
-
tenantId: { __type: "uuid_comparison_exp" };
|
|
41703
|
-
type: { __type: "String_comparison_exp" };
|
|
41704
|
-
uniqueRef: { __type: "String_comparison_exp" };
|
|
41705
|
-
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
41706
|
-
value: { __type: "float8_comparison_exp" };
|
|
41707
|
-
};
|
|
41708
|
-
metric_delete_at_path_input: { metadata: { __type: "[String!]" } };
|
|
41709
|
-
metric_delete_elem_input: { metadata: { __type: "Int" } };
|
|
41710
|
-
metric_delete_key_input: { metadata: { __type: "String" } };
|
|
41711
|
-
metric_inc_input: { value: { __type: "float8" } };
|
|
41712
|
-
metric_insert_input: {
|
|
41713
|
-
connection: { __type: "connection_obj_rel_insert_input" };
|
|
41714
|
-
connectionId: { __type: "uuid" };
|
|
41715
|
-
createdAt: { __type: "timestamptz" };
|
|
41716
|
-
date: { __type: "timestamptz" };
|
|
41717
|
-
id: { __type: "uuid" };
|
|
41718
|
-
listingConnection: { __type: "listing_connection_obj_rel_insert_input" };
|
|
41719
|
-
listingConnectionId: { __type: "uuid" };
|
|
41720
|
-
metadata: { __type: "jsonb" };
|
|
41721
|
-
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
41722
|
-
tenantId: { __type: "uuid" };
|
|
41723
|
-
type: { __type: "String" };
|
|
41724
|
-
uniqueRef: { __type: "String" };
|
|
41725
|
-
updatedAt: { __type: "timestamptz" };
|
|
41726
|
-
value: { __type: "float8" };
|
|
41727
|
-
};
|
|
41728
|
-
metric_max_fields: {
|
|
41729
|
-
__typename: { __type: "String!" };
|
|
41730
|
-
connectionId: { __type: "uuid" };
|
|
41731
|
-
createdAt: { __type: "timestamptz" };
|
|
41732
|
-
date: { __type: "timestamptz" };
|
|
41733
|
-
id: { __type: "uuid" };
|
|
41734
|
-
listingConnectionId: { __type: "uuid" };
|
|
41735
|
-
tenantId: { __type: "uuid" };
|
|
41736
|
-
type: { __type: "String" };
|
|
41737
|
-
uniqueRef: { __type: "String" };
|
|
41738
|
-
updatedAt: { __type: "timestamptz" };
|
|
41739
|
-
value: { __type: "float8" };
|
|
41740
|
-
};
|
|
41741
|
-
metric_min_fields: {
|
|
41742
|
-
__typename: { __type: "String!" };
|
|
41743
|
-
connectionId: { __type: "uuid" };
|
|
41744
|
-
createdAt: { __type: "timestamptz" };
|
|
41745
|
-
date: { __type: "timestamptz" };
|
|
41746
|
-
id: { __type: "uuid" };
|
|
41747
|
-
listingConnectionId: { __type: "uuid" };
|
|
41748
|
-
tenantId: { __type: "uuid" };
|
|
41749
|
-
type: { __type: "String" };
|
|
41750
|
-
uniqueRef: { __type: "String" };
|
|
41751
|
-
updatedAt: { __type: "timestamptz" };
|
|
41752
|
-
value: { __type: "float8" };
|
|
41753
|
-
};
|
|
41754
|
-
metric_mutation_response: {
|
|
41755
|
-
__typename: { __type: "String!" };
|
|
41756
|
-
affected_rows: { __type: "Int!" };
|
|
41757
|
-
returning: { __type: "[metric!]!" };
|
|
41758
|
-
};
|
|
41759
|
-
metric_on_conflict: {
|
|
41760
|
-
constraint: { __type: "metric_constraint!" };
|
|
41761
|
-
update_columns: { __type: "[metric_update_column!]!" };
|
|
41762
|
-
where: { __type: "metric_bool_exp" };
|
|
41763
|
-
};
|
|
41764
|
-
metric_order_by: {
|
|
41765
|
-
connection: { __type: "connection_order_by" };
|
|
41766
|
-
connectionId: { __type: "order_by" };
|
|
41767
|
-
createdAt: { __type: "order_by" };
|
|
41768
|
-
date: { __type: "order_by" };
|
|
41769
|
-
id: { __type: "order_by" };
|
|
41770
|
-
listingConnection: { __type: "listing_connection_order_by" };
|
|
41771
|
-
listingConnectionId: { __type: "order_by" };
|
|
41772
|
-
metadata: { __type: "order_by" };
|
|
41773
|
-
tenant: { __type: "tenant_order_by" };
|
|
41774
|
-
tenantId: { __type: "order_by" };
|
|
41775
|
-
type: { __type: "order_by" };
|
|
41776
|
-
uniqueRef: { __type: "order_by" };
|
|
41777
|
-
updatedAt: { __type: "order_by" };
|
|
41778
|
-
value: { __type: "order_by" };
|
|
41779
|
-
};
|
|
41780
|
-
metric_pk_columns_input: { id: { __type: "uuid!" } };
|
|
41781
|
-
metric_prepend_input: { metadata: { __type: "jsonb" } };
|
|
41782
|
-
metric_set_input: {
|
|
41783
|
-
connectionId: { __type: "uuid" };
|
|
41784
|
-
createdAt: { __type: "timestamptz" };
|
|
41785
|
-
date: { __type: "timestamptz" };
|
|
41786
|
-
id: { __type: "uuid" };
|
|
41787
|
-
listingConnectionId: { __type: "uuid" };
|
|
41788
|
-
metadata: { __type: "jsonb" };
|
|
41789
|
-
tenantId: { __type: "uuid" };
|
|
41790
|
-
type: { __type: "String" };
|
|
41791
|
-
uniqueRef: { __type: "String" };
|
|
41792
|
-
updatedAt: { __type: "timestamptz" };
|
|
41793
|
-
value: { __type: "float8" };
|
|
41794
|
-
};
|
|
41795
|
-
metric_stddev_fields: {
|
|
41796
|
-
__typename: { __type: "String!" };
|
|
41797
|
-
value: { __type: "Float" };
|
|
41798
|
-
};
|
|
41799
|
-
metric_stddev_pop_fields: {
|
|
41800
|
-
__typename: { __type: "String!" };
|
|
41801
|
-
value: { __type: "Float" };
|
|
41802
|
-
};
|
|
41803
|
-
metric_stddev_samp_fields: {
|
|
41804
|
-
__typename: { __type: "String!" };
|
|
41805
|
-
value: { __type: "Float" };
|
|
41806
|
-
};
|
|
41807
|
-
metric_stream_cursor_input: {
|
|
41808
|
-
initial_value: { __type: "metric_stream_cursor_value_input!" };
|
|
41809
|
-
ordering: { __type: "cursor_ordering" };
|
|
41810
|
-
};
|
|
41811
|
-
metric_stream_cursor_value_input: {
|
|
41812
|
-
connectionId: { __type: "uuid" };
|
|
41813
|
-
createdAt: { __type: "timestamptz" };
|
|
41814
|
-
date: { __type: "timestamptz" };
|
|
41815
|
-
id: { __type: "uuid" };
|
|
41816
|
-
listingConnectionId: { __type: "uuid" };
|
|
41817
|
-
metadata: { __type: "jsonb" };
|
|
41818
|
-
tenantId: { __type: "uuid" };
|
|
41819
|
-
type: { __type: "String" };
|
|
41820
|
-
uniqueRef: { __type: "String" };
|
|
41821
|
-
updatedAt: { __type: "timestamptz" };
|
|
41822
|
-
value: { __type: "float8" };
|
|
41823
|
-
};
|
|
41824
|
-
metric_sum_fields: {
|
|
41825
|
-
__typename: { __type: "String!" };
|
|
41826
|
-
value: { __type: "float8" };
|
|
41827
|
-
};
|
|
41828
|
-
metric_updates: {
|
|
41829
|
-
_append: { __type: "metric_append_input" };
|
|
41830
|
-
_delete_at_path: { __type: "metric_delete_at_path_input" };
|
|
41831
|
-
_delete_elem: { __type: "metric_delete_elem_input" };
|
|
41832
|
-
_delete_key: { __type: "metric_delete_key_input" };
|
|
41833
|
-
_inc: { __type: "metric_inc_input" };
|
|
41834
|
-
_prepend: { __type: "metric_prepend_input" };
|
|
41835
|
-
_set: { __type: "metric_set_input" };
|
|
41836
|
-
where: { __type: "metric_bool_exp!" };
|
|
41837
|
-
};
|
|
41838
|
-
metric_var_pop_fields: {
|
|
41839
|
-
__typename: { __type: "String!" };
|
|
41840
|
-
value: { __type: "Float" };
|
|
41841
|
-
};
|
|
41842
|
-
metric_var_samp_fields: {
|
|
41843
|
-
__typename: { __type: "String!" };
|
|
41844
|
-
value: { __type: "Float" };
|
|
41845
|
-
};
|
|
41846
|
-
metric_variance_fields: {
|
|
41847
|
-
__typename: { __type: "String!" };
|
|
41848
|
-
value: { __type: "Float" };
|
|
41849
|
-
};
|
|
41850
41467
|
metricsActiveListingCreatedReturnType: {
|
|
41851
41468
|
__typename: { __type: "String!" };
|
|
41852
41469
|
created: { __type: "bigint" };
|
|
@@ -42883,11 +42500,6 @@ export declare const generatedSchema: {
|
|
|
42883
42500
|
__type: "listing_mutation_response";
|
|
42884
42501
|
__args: { where: "listing_bool_exp!" };
|
|
42885
42502
|
};
|
|
42886
|
-
deleteMetric: { __type: "metric"; __args: { id: "uuid!" } };
|
|
42887
|
-
deleteMetrics: {
|
|
42888
|
-
__type: "metric_mutation_response";
|
|
42889
|
-
__args: { where: "metric_bool_exp!" };
|
|
42890
|
-
};
|
|
42891
42503
|
deleteMonitorConnection: {
|
|
42892
42504
|
__type: "monitorConnection";
|
|
42893
42505
|
__args: { id: "uuid!" };
|
|
@@ -44112,20 +43724,6 @@ export declare const generatedSchema: {
|
|
|
44112
43724
|
on_conflict: "listing_on_conflict";
|
|
44113
43725
|
};
|
|
44114
43726
|
};
|
|
44115
|
-
insertMetric: {
|
|
44116
|
-
__type: "metric";
|
|
44117
|
-
__args: {
|
|
44118
|
-
object: "metric_insert_input!";
|
|
44119
|
-
on_conflict: "metric_on_conflict";
|
|
44120
|
-
};
|
|
44121
|
-
};
|
|
44122
|
-
insertMetrics: {
|
|
44123
|
-
__type: "metric_mutation_response";
|
|
44124
|
-
__args: {
|
|
44125
|
-
objects: "[metric_insert_input!]!";
|
|
44126
|
-
on_conflict: "metric_on_conflict";
|
|
44127
|
-
};
|
|
44128
|
-
};
|
|
44129
43727
|
insertMonitorConnection: {
|
|
44130
43728
|
__type: "monitorConnection";
|
|
44131
43729
|
__args: {
|
|
@@ -46360,32 +45958,6 @@ export declare const generatedSchema: {
|
|
|
46360
45958
|
__type: "[user_company_user_mutation_response]";
|
|
46361
45959
|
__args: { updates: "[user_company_user_updates!]!" };
|
|
46362
45960
|
};
|
|
46363
|
-
updateMetric: {
|
|
46364
|
-
__type: "metric";
|
|
46365
|
-
__args: {
|
|
46366
|
-
_append: "metric_append_input";
|
|
46367
|
-
_delete_at_path: "metric_delete_at_path_input";
|
|
46368
|
-
_delete_elem: "metric_delete_elem_input";
|
|
46369
|
-
_delete_key: "metric_delete_key_input";
|
|
46370
|
-
_inc: "metric_inc_input";
|
|
46371
|
-
_prepend: "metric_prepend_input";
|
|
46372
|
-
_set: "metric_set_input";
|
|
46373
|
-
pk_columns: "metric_pk_columns_input!";
|
|
46374
|
-
};
|
|
46375
|
-
};
|
|
46376
|
-
updateMetrics: {
|
|
46377
|
-
__type: "metric_mutation_response";
|
|
46378
|
-
__args: {
|
|
46379
|
-
_append: "metric_append_input";
|
|
46380
|
-
_delete_at_path: "metric_delete_at_path_input";
|
|
46381
|
-
_delete_elem: "metric_delete_elem_input";
|
|
46382
|
-
_delete_key: "metric_delete_key_input";
|
|
46383
|
-
_inc: "metric_inc_input";
|
|
46384
|
-
_prepend: "metric_prepend_input";
|
|
46385
|
-
_set: "metric_set_input";
|
|
46386
|
-
where: "metric_bool_exp!";
|
|
46387
|
-
};
|
|
46388
|
-
};
|
|
46389
45961
|
updateMonitorConnection: {
|
|
46390
45962
|
__type: "monitorConnection";
|
|
46391
45963
|
__args: {
|
|
@@ -47393,10 +46965,6 @@ export declare const generatedSchema: {
|
|
|
47393
46965
|
__type: "[listing_status_mutation_response]";
|
|
47394
46966
|
__args: { updates: "[listing_status_updates!]!" };
|
|
47395
46967
|
};
|
|
47396
|
-
update_metric_many: {
|
|
47397
|
-
__type: "[metric_mutation_response]";
|
|
47398
|
-
__args: { updates: "[metric_updates!]!" };
|
|
47399
|
-
};
|
|
47400
46968
|
update_owner_pms_status: {
|
|
47401
46969
|
__type: "owner_pms_status_mutation_response";
|
|
47402
46970
|
__args: {
|
|
@@ -48670,9 +48238,12 @@ export declare const generatedSchema: {
|
|
|
48670
48238
|
centAccountingBalanceStart: { __type: "Int" };
|
|
48671
48239
|
centBalanceEnd: { __type: "bigint" };
|
|
48672
48240
|
centBalanceStart: { __type: "bigint" };
|
|
48241
|
+
centExpenses: { __type: "bigint" };
|
|
48242
|
+
centNetRevenue: { __type: "bigint" };
|
|
48673
48243
|
centPayedOut: { __type: "Int" };
|
|
48674
48244
|
centRentalRevenue: { __type: "Int" };
|
|
48675
48245
|
centTotal: { __type: "bigint" };
|
|
48246
|
+
centTransfer: { __type: "bigint" };
|
|
48676
48247
|
createdAt: { __type: "timestamptz!" };
|
|
48677
48248
|
currency: { __type: "currency_enum" };
|
|
48678
48249
|
endAt: { __type: "timestamptz!" };
|
|
@@ -48861,18 +48432,24 @@ export declare const generatedSchema: {
|
|
|
48861
48432
|
centAccountingBalanceStart: { __type: "Float" };
|
|
48862
48433
|
centBalanceEnd: { __type: "Float" };
|
|
48863
48434
|
centBalanceStart: { __type: "Float" };
|
|
48435
|
+
centExpenses: { __type: "Float" };
|
|
48436
|
+
centNetRevenue: { __type: "Float" };
|
|
48864
48437
|
centPayedOut: { __type: "Float" };
|
|
48865
48438
|
centRentalRevenue: { __type: "Float" };
|
|
48866
48439
|
centTotal: { __type: "Float" };
|
|
48440
|
+
centTransfer: { __type: "Float" };
|
|
48867
48441
|
};
|
|
48868
48442
|
owner_statement_avg_order_by: {
|
|
48869
48443
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
48870
48444
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
48871
48445
|
centBalanceEnd: { __type: "order_by" };
|
|
48872
48446
|
centBalanceStart: { __type: "order_by" };
|
|
48447
|
+
centExpenses: { __type: "order_by" };
|
|
48448
|
+
centNetRevenue: { __type: "order_by" };
|
|
48873
48449
|
centPayedOut: { __type: "order_by" };
|
|
48874
48450
|
centRentalRevenue: { __type: "order_by" };
|
|
48875
48451
|
centTotal: { __type: "order_by" };
|
|
48452
|
+
centTransfer: { __type: "order_by" };
|
|
48876
48453
|
};
|
|
48877
48454
|
owner_statement_bool_exp: {
|
|
48878
48455
|
_and: { __type: "[owner_statement_bool_exp!]" };
|
|
@@ -48888,9 +48465,12 @@ export declare const generatedSchema: {
|
|
|
48888
48465
|
centAccountingBalanceStart: { __type: "Int_comparison_exp" };
|
|
48889
48466
|
centBalanceEnd: { __type: "bigint_comparison_exp" };
|
|
48890
48467
|
centBalanceStart: { __type: "bigint_comparison_exp" };
|
|
48468
|
+
centExpenses: { __type: "bigint_comparison_exp" };
|
|
48469
|
+
centNetRevenue: { __type: "bigint_comparison_exp" };
|
|
48891
48470
|
centPayedOut: { __type: "Int_comparison_exp" };
|
|
48892
48471
|
centRentalRevenue: { __type: "Int_comparison_exp" };
|
|
48893
48472
|
centTotal: { __type: "bigint_comparison_exp" };
|
|
48473
|
+
centTransfer: { __type: "bigint_comparison_exp" };
|
|
48894
48474
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
48895
48475
|
currency: { __type: "currency_enum_comparison_exp" };
|
|
48896
48476
|
endAt: { __type: "timestamptz_comparison_exp" };
|
|
@@ -48949,9 +48529,12 @@ export declare const generatedSchema: {
|
|
|
48949
48529
|
centAccountingBalanceStart: { __type: "Int" };
|
|
48950
48530
|
centBalanceEnd: { __type: "bigint" };
|
|
48951
48531
|
centBalanceStart: { __type: "bigint" };
|
|
48532
|
+
centExpenses: { __type: "bigint" };
|
|
48533
|
+
centNetRevenue: { __type: "bigint" };
|
|
48952
48534
|
centPayedOut: { __type: "Int" };
|
|
48953
48535
|
centRentalRevenue: { __type: "Int" };
|
|
48954
48536
|
centTotal: { __type: "bigint" };
|
|
48537
|
+
centTransfer: { __type: "bigint" };
|
|
48955
48538
|
};
|
|
48956
48539
|
owner_statement_insert_input: {
|
|
48957
48540
|
attachedJournalEntries: { __type: "journalEntry_arr_rel_insert_input" };
|
|
@@ -48961,9 +48544,12 @@ export declare const generatedSchema: {
|
|
|
48961
48544
|
centAccountingBalanceStart: { __type: "Int" };
|
|
48962
48545
|
centBalanceEnd: { __type: "bigint" };
|
|
48963
48546
|
centBalanceStart: { __type: "bigint" };
|
|
48547
|
+
centExpenses: { __type: "bigint" };
|
|
48548
|
+
centNetRevenue: { __type: "bigint" };
|
|
48964
48549
|
centPayedOut: { __type: "Int" };
|
|
48965
48550
|
centRentalRevenue: { __type: "Int" };
|
|
48966
48551
|
centTotal: { __type: "bigint" };
|
|
48552
|
+
centTransfer: { __type: "bigint" };
|
|
48967
48553
|
createdAt: { __type: "timestamptz" };
|
|
48968
48554
|
currency: { __type: "currency_enum" };
|
|
48969
48555
|
endAt: { __type: "timestamptz" };
|
|
@@ -49679,9 +49265,12 @@ export declare const generatedSchema: {
|
|
|
49679
49265
|
centAccountingBalanceStart: { __type: "Int" };
|
|
49680
49266
|
centBalanceEnd: { __type: "bigint" };
|
|
49681
49267
|
centBalanceStart: { __type: "bigint" };
|
|
49268
|
+
centExpenses: { __type: "bigint" };
|
|
49269
|
+
centNetRevenue: { __type: "bigint" };
|
|
49682
49270
|
centPayedOut: { __type: "Int" };
|
|
49683
49271
|
centRentalRevenue: { __type: "Int" };
|
|
49684
49272
|
centTotal: { __type: "bigint" };
|
|
49273
|
+
centTransfer: { __type: "bigint" };
|
|
49685
49274
|
createdAt: { __type: "timestamptz" };
|
|
49686
49275
|
endAt: { __type: "timestamptz" };
|
|
49687
49276
|
id: { __type: "uuid" };
|
|
@@ -49702,9 +49291,12 @@ export declare const generatedSchema: {
|
|
|
49702
49291
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
49703
49292
|
centBalanceEnd: { __type: "order_by" };
|
|
49704
49293
|
centBalanceStart: { __type: "order_by" };
|
|
49294
|
+
centExpenses: { __type: "order_by" };
|
|
49295
|
+
centNetRevenue: { __type: "order_by" };
|
|
49705
49296
|
centPayedOut: { __type: "order_by" };
|
|
49706
49297
|
centRentalRevenue: { __type: "order_by" };
|
|
49707
49298
|
centTotal: { __type: "order_by" };
|
|
49299
|
+
centTransfer: { __type: "order_by" };
|
|
49708
49300
|
createdAt: { __type: "order_by" };
|
|
49709
49301
|
endAt: { __type: "order_by" };
|
|
49710
49302
|
id: { __type: "order_by" };
|
|
@@ -49726,9 +49318,12 @@ export declare const generatedSchema: {
|
|
|
49726
49318
|
centAccountingBalanceStart: { __type: "Int" };
|
|
49727
49319
|
centBalanceEnd: { __type: "bigint" };
|
|
49728
49320
|
centBalanceStart: { __type: "bigint" };
|
|
49321
|
+
centExpenses: { __type: "bigint" };
|
|
49322
|
+
centNetRevenue: { __type: "bigint" };
|
|
49729
49323
|
centPayedOut: { __type: "Int" };
|
|
49730
49324
|
centRentalRevenue: { __type: "Int" };
|
|
49731
49325
|
centTotal: { __type: "bigint" };
|
|
49326
|
+
centTransfer: { __type: "bigint" };
|
|
49732
49327
|
createdAt: { __type: "timestamptz" };
|
|
49733
49328
|
endAt: { __type: "timestamptz" };
|
|
49734
49329
|
id: { __type: "uuid" };
|
|
@@ -49749,9 +49344,12 @@ export declare const generatedSchema: {
|
|
|
49749
49344
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
49750
49345
|
centBalanceEnd: { __type: "order_by" };
|
|
49751
49346
|
centBalanceStart: { __type: "order_by" };
|
|
49347
|
+
centExpenses: { __type: "order_by" };
|
|
49348
|
+
centNetRevenue: { __type: "order_by" };
|
|
49752
49349
|
centPayedOut: { __type: "order_by" };
|
|
49753
49350
|
centRentalRevenue: { __type: "order_by" };
|
|
49754
49351
|
centTotal: { __type: "order_by" };
|
|
49352
|
+
centTransfer: { __type: "order_by" };
|
|
49755
49353
|
createdAt: { __type: "order_by" };
|
|
49756
49354
|
endAt: { __type: "order_by" };
|
|
49757
49355
|
id: { __type: "order_by" };
|
|
@@ -49790,9 +49388,12 @@ export declare const generatedSchema: {
|
|
|
49790
49388
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
49791
49389
|
centBalanceEnd: { __type: "order_by" };
|
|
49792
49390
|
centBalanceStart: { __type: "order_by" };
|
|
49391
|
+
centExpenses: { __type: "order_by" };
|
|
49392
|
+
centNetRevenue: { __type: "order_by" };
|
|
49793
49393
|
centPayedOut: { __type: "order_by" };
|
|
49794
49394
|
centRentalRevenue: { __type: "order_by" };
|
|
49795
49395
|
centTotal: { __type: "order_by" };
|
|
49396
|
+
centTransfer: { __type: "order_by" };
|
|
49796
49397
|
createdAt: { __type: "order_by" };
|
|
49797
49398
|
currency: { __type: "order_by" };
|
|
49798
49399
|
endAt: { __type: "order_by" };
|
|
@@ -50082,9 +49683,12 @@ export declare const generatedSchema: {
|
|
|
50082
49683
|
centAccountingBalanceStart: { __type: "Int" };
|
|
50083
49684
|
centBalanceEnd: { __type: "bigint" };
|
|
50084
49685
|
centBalanceStart: { __type: "bigint" };
|
|
49686
|
+
centExpenses: { __type: "bigint" };
|
|
49687
|
+
centNetRevenue: { __type: "bigint" };
|
|
50085
49688
|
centPayedOut: { __type: "Int" };
|
|
50086
49689
|
centRentalRevenue: { __type: "Int" };
|
|
50087
49690
|
centTotal: { __type: "bigint" };
|
|
49691
|
+
centTransfer: { __type: "bigint" };
|
|
50088
49692
|
createdAt: { __type: "timestamptz" };
|
|
50089
49693
|
currency: { __type: "currency_enum" };
|
|
50090
49694
|
endAt: { __type: "timestamptz" };
|
|
@@ -50179,18 +49783,24 @@ export declare const generatedSchema: {
|
|
|
50179
49783
|
centAccountingBalanceStart: { __type: "Float" };
|
|
50180
49784
|
centBalanceEnd: { __type: "Float" };
|
|
50181
49785
|
centBalanceStart: { __type: "Float" };
|
|
49786
|
+
centExpenses: { __type: "Float" };
|
|
49787
|
+
centNetRevenue: { __type: "Float" };
|
|
50182
49788
|
centPayedOut: { __type: "Float" };
|
|
50183
49789
|
centRentalRevenue: { __type: "Float" };
|
|
50184
49790
|
centTotal: { __type: "Float" };
|
|
49791
|
+
centTransfer: { __type: "Float" };
|
|
50185
49792
|
};
|
|
50186
49793
|
owner_statement_stddev_order_by: {
|
|
50187
49794
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
50188
49795
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
50189
49796
|
centBalanceEnd: { __type: "order_by" };
|
|
50190
49797
|
centBalanceStart: { __type: "order_by" };
|
|
49798
|
+
centExpenses: { __type: "order_by" };
|
|
49799
|
+
centNetRevenue: { __type: "order_by" };
|
|
50191
49800
|
centPayedOut: { __type: "order_by" };
|
|
50192
49801
|
centRentalRevenue: { __type: "order_by" };
|
|
50193
49802
|
centTotal: { __type: "order_by" };
|
|
49803
|
+
centTransfer: { __type: "order_by" };
|
|
50194
49804
|
};
|
|
50195
49805
|
owner_statement_stddev_pop_fields: {
|
|
50196
49806
|
__typename: { __type: "String!" };
|
|
@@ -50198,18 +49808,24 @@ export declare const generatedSchema: {
|
|
|
50198
49808
|
centAccountingBalanceStart: { __type: "Float" };
|
|
50199
49809
|
centBalanceEnd: { __type: "Float" };
|
|
50200
49810
|
centBalanceStart: { __type: "Float" };
|
|
49811
|
+
centExpenses: { __type: "Float" };
|
|
49812
|
+
centNetRevenue: { __type: "Float" };
|
|
50201
49813
|
centPayedOut: { __type: "Float" };
|
|
50202
49814
|
centRentalRevenue: { __type: "Float" };
|
|
50203
49815
|
centTotal: { __type: "Float" };
|
|
49816
|
+
centTransfer: { __type: "Float" };
|
|
50204
49817
|
};
|
|
50205
49818
|
owner_statement_stddev_pop_order_by: {
|
|
50206
49819
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
50207
49820
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
50208
49821
|
centBalanceEnd: { __type: "order_by" };
|
|
50209
49822
|
centBalanceStart: { __type: "order_by" };
|
|
49823
|
+
centExpenses: { __type: "order_by" };
|
|
49824
|
+
centNetRevenue: { __type: "order_by" };
|
|
50210
49825
|
centPayedOut: { __type: "order_by" };
|
|
50211
49826
|
centRentalRevenue: { __type: "order_by" };
|
|
50212
49827
|
centTotal: { __type: "order_by" };
|
|
49828
|
+
centTransfer: { __type: "order_by" };
|
|
50213
49829
|
};
|
|
50214
49830
|
owner_statement_stddev_samp_fields: {
|
|
50215
49831
|
__typename: { __type: "String!" };
|
|
@@ -50217,18 +49833,24 @@ export declare const generatedSchema: {
|
|
|
50217
49833
|
centAccountingBalanceStart: { __type: "Float" };
|
|
50218
49834
|
centBalanceEnd: { __type: "Float" };
|
|
50219
49835
|
centBalanceStart: { __type: "Float" };
|
|
49836
|
+
centExpenses: { __type: "Float" };
|
|
49837
|
+
centNetRevenue: { __type: "Float" };
|
|
50220
49838
|
centPayedOut: { __type: "Float" };
|
|
50221
49839
|
centRentalRevenue: { __type: "Float" };
|
|
50222
49840
|
centTotal: { __type: "Float" };
|
|
49841
|
+
centTransfer: { __type: "Float" };
|
|
50223
49842
|
};
|
|
50224
49843
|
owner_statement_stddev_samp_order_by: {
|
|
50225
49844
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
50226
49845
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
50227
49846
|
centBalanceEnd: { __type: "order_by" };
|
|
50228
49847
|
centBalanceStart: { __type: "order_by" };
|
|
49848
|
+
centExpenses: { __type: "order_by" };
|
|
49849
|
+
centNetRevenue: { __type: "order_by" };
|
|
50229
49850
|
centPayedOut: { __type: "order_by" };
|
|
50230
49851
|
centRentalRevenue: { __type: "order_by" };
|
|
50231
49852
|
centTotal: { __type: "order_by" };
|
|
49853
|
+
centTransfer: { __type: "order_by" };
|
|
50232
49854
|
};
|
|
50233
49855
|
owner_statement_stream_cursor_input: {
|
|
50234
49856
|
initial_value: { __type: "owner_statement_stream_cursor_value_input!" };
|
|
@@ -50240,9 +49862,12 @@ export declare const generatedSchema: {
|
|
|
50240
49862
|
centAccountingBalanceStart: { __type: "Int" };
|
|
50241
49863
|
centBalanceEnd: { __type: "bigint" };
|
|
50242
49864
|
centBalanceStart: { __type: "bigint" };
|
|
49865
|
+
centExpenses: { __type: "bigint" };
|
|
49866
|
+
centNetRevenue: { __type: "bigint" };
|
|
50243
49867
|
centPayedOut: { __type: "Int" };
|
|
50244
49868
|
centRentalRevenue: { __type: "Int" };
|
|
50245
49869
|
centTotal: { __type: "bigint" };
|
|
49870
|
+
centTransfer: { __type: "bigint" };
|
|
50246
49871
|
createdAt: { __type: "timestamptz" };
|
|
50247
49872
|
currency: { __type: "currency_enum" };
|
|
50248
49873
|
endAt: { __type: "timestamptz" };
|
|
@@ -50268,18 +49893,24 @@ export declare const generatedSchema: {
|
|
|
50268
49893
|
centAccountingBalanceStart: { __type: "Int" };
|
|
50269
49894
|
centBalanceEnd: { __type: "bigint" };
|
|
50270
49895
|
centBalanceStart: { __type: "bigint" };
|
|
49896
|
+
centExpenses: { __type: "bigint" };
|
|
49897
|
+
centNetRevenue: { __type: "bigint" };
|
|
50271
49898
|
centPayedOut: { __type: "Int" };
|
|
50272
49899
|
centRentalRevenue: { __type: "Int" };
|
|
50273
49900
|
centTotal: { __type: "bigint" };
|
|
49901
|
+
centTransfer: { __type: "bigint" };
|
|
50274
49902
|
};
|
|
50275
49903
|
owner_statement_sum_order_by: {
|
|
50276
49904
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
50277
49905
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
50278
49906
|
centBalanceEnd: { __type: "order_by" };
|
|
50279
49907
|
centBalanceStart: { __type: "order_by" };
|
|
49908
|
+
centExpenses: { __type: "order_by" };
|
|
49909
|
+
centNetRevenue: { __type: "order_by" };
|
|
50280
49910
|
centPayedOut: { __type: "order_by" };
|
|
50281
49911
|
centRentalRevenue: { __type: "order_by" };
|
|
50282
49912
|
centTotal: { __type: "order_by" };
|
|
49913
|
+
centTransfer: { __type: "order_by" };
|
|
50283
49914
|
};
|
|
50284
49915
|
owner_statement_template: {
|
|
50285
49916
|
__typename: { __type: "String!" };
|
|
@@ -50535,18 +50166,24 @@ export declare const generatedSchema: {
|
|
|
50535
50166
|
centAccountingBalanceStart: { __type: "Float" };
|
|
50536
50167
|
centBalanceEnd: { __type: "Float" };
|
|
50537
50168
|
centBalanceStart: { __type: "Float" };
|
|
50169
|
+
centExpenses: { __type: "Float" };
|
|
50170
|
+
centNetRevenue: { __type: "Float" };
|
|
50538
50171
|
centPayedOut: { __type: "Float" };
|
|
50539
50172
|
centRentalRevenue: { __type: "Float" };
|
|
50540
50173
|
centTotal: { __type: "Float" };
|
|
50174
|
+
centTransfer: { __type: "Float" };
|
|
50541
50175
|
};
|
|
50542
50176
|
owner_statement_var_pop_order_by: {
|
|
50543
50177
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
50544
50178
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
50545
50179
|
centBalanceEnd: { __type: "order_by" };
|
|
50546
50180
|
centBalanceStart: { __type: "order_by" };
|
|
50181
|
+
centExpenses: { __type: "order_by" };
|
|
50182
|
+
centNetRevenue: { __type: "order_by" };
|
|
50547
50183
|
centPayedOut: { __type: "order_by" };
|
|
50548
50184
|
centRentalRevenue: { __type: "order_by" };
|
|
50549
50185
|
centTotal: { __type: "order_by" };
|
|
50186
|
+
centTransfer: { __type: "order_by" };
|
|
50550
50187
|
};
|
|
50551
50188
|
owner_statement_var_samp_fields: {
|
|
50552
50189
|
__typename: { __type: "String!" };
|
|
@@ -50554,18 +50191,24 @@ export declare const generatedSchema: {
|
|
|
50554
50191
|
centAccountingBalanceStart: { __type: "Float" };
|
|
50555
50192
|
centBalanceEnd: { __type: "Float" };
|
|
50556
50193
|
centBalanceStart: { __type: "Float" };
|
|
50194
|
+
centExpenses: { __type: "Float" };
|
|
50195
|
+
centNetRevenue: { __type: "Float" };
|
|
50557
50196
|
centPayedOut: { __type: "Float" };
|
|
50558
50197
|
centRentalRevenue: { __type: "Float" };
|
|
50559
50198
|
centTotal: { __type: "Float" };
|
|
50199
|
+
centTransfer: { __type: "Float" };
|
|
50560
50200
|
};
|
|
50561
50201
|
owner_statement_var_samp_order_by: {
|
|
50562
50202
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
50563
50203
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
50564
50204
|
centBalanceEnd: { __type: "order_by" };
|
|
50565
50205
|
centBalanceStart: { __type: "order_by" };
|
|
50206
|
+
centExpenses: { __type: "order_by" };
|
|
50207
|
+
centNetRevenue: { __type: "order_by" };
|
|
50566
50208
|
centPayedOut: { __type: "order_by" };
|
|
50567
50209
|
centRentalRevenue: { __type: "order_by" };
|
|
50568
50210
|
centTotal: { __type: "order_by" };
|
|
50211
|
+
centTransfer: { __type: "order_by" };
|
|
50569
50212
|
};
|
|
50570
50213
|
owner_statement_variance_fields: {
|
|
50571
50214
|
__typename: { __type: "String!" };
|
|
@@ -50573,18 +50216,24 @@ export declare const generatedSchema: {
|
|
|
50573
50216
|
centAccountingBalanceStart: { __type: "Float" };
|
|
50574
50217
|
centBalanceEnd: { __type: "Float" };
|
|
50575
50218
|
centBalanceStart: { __type: "Float" };
|
|
50219
|
+
centExpenses: { __type: "Float" };
|
|
50220
|
+
centNetRevenue: { __type: "Float" };
|
|
50576
50221
|
centPayedOut: { __type: "Float" };
|
|
50577
50222
|
centRentalRevenue: { __type: "Float" };
|
|
50578
50223
|
centTotal: { __type: "Float" };
|
|
50224
|
+
centTransfer: { __type: "Float" };
|
|
50579
50225
|
};
|
|
50580
50226
|
owner_statement_variance_order_by: {
|
|
50581
50227
|
centAccountingBalanceEnd: { __type: "order_by" };
|
|
50582
50228
|
centAccountingBalanceStart: { __type: "order_by" };
|
|
50583
50229
|
centBalanceEnd: { __type: "order_by" };
|
|
50584
50230
|
centBalanceStart: { __type: "order_by" };
|
|
50231
|
+
centExpenses: { __type: "order_by" };
|
|
50232
|
+
centNetRevenue: { __type: "order_by" };
|
|
50585
50233
|
centPayedOut: { __type: "order_by" };
|
|
50586
50234
|
centRentalRevenue: { __type: "order_by" };
|
|
50587
50235
|
centTotal: { __type: "order_by" };
|
|
50236
|
+
centTransfer: { __type: "order_by" };
|
|
50588
50237
|
};
|
|
50589
50238
|
owner_status: {
|
|
50590
50239
|
__typename: { __type: "String!" };
|
|
@@ -54243,27 +53892,6 @@ export declare const generatedSchema: {
|
|
|
54243
53892
|
where: "listing_bool_exp";
|
|
54244
53893
|
};
|
|
54245
53894
|
};
|
|
54246
|
-
metric: { __type: "metric"; __args: { id: "uuid!" } };
|
|
54247
|
-
metricAggregate: {
|
|
54248
|
-
__type: "metric_aggregate!";
|
|
54249
|
-
__args: {
|
|
54250
|
-
distinct_on: "[metric_select_column!]";
|
|
54251
|
-
limit: "Int";
|
|
54252
|
-
offset: "Int";
|
|
54253
|
-
order_by: "[metric_order_by!]";
|
|
54254
|
-
where: "metric_bool_exp";
|
|
54255
|
-
};
|
|
54256
|
-
};
|
|
54257
|
-
metrics: {
|
|
54258
|
-
__type: "[metric!]!";
|
|
54259
|
-
__args: {
|
|
54260
|
-
distinct_on: "[metric_select_column!]";
|
|
54261
|
-
limit: "Int";
|
|
54262
|
-
offset: "Int";
|
|
54263
|
-
order_by: "[metric_order_by!]";
|
|
54264
|
-
where: "metric_bool_exp";
|
|
54265
|
-
};
|
|
54266
|
-
};
|
|
54267
53895
|
metricsActiveListingCreated: {
|
|
54268
53896
|
__type: "[metricsActiveListingCreatedReturnType!]!";
|
|
54269
53897
|
__args: {
|
|
@@ -63202,35 +62830,6 @@ export declare const generatedSchema: {
|
|
|
63202
62830
|
where: "listing_bool_exp";
|
|
63203
62831
|
};
|
|
63204
62832
|
};
|
|
63205
|
-
metric: { __type: "metric"; __args: { id: "uuid!" } };
|
|
63206
|
-
metricAggregate: {
|
|
63207
|
-
__type: "metric_aggregate!";
|
|
63208
|
-
__args: {
|
|
63209
|
-
distinct_on: "[metric_select_column!]";
|
|
63210
|
-
limit: "Int";
|
|
63211
|
-
offset: "Int";
|
|
63212
|
-
order_by: "[metric_order_by!]";
|
|
63213
|
-
where: "metric_bool_exp";
|
|
63214
|
-
};
|
|
63215
|
-
};
|
|
63216
|
-
metric_stream: {
|
|
63217
|
-
__type: "[metric!]!";
|
|
63218
|
-
__args: {
|
|
63219
|
-
batch_size: "Int!";
|
|
63220
|
-
cursor: "[metric_stream_cursor_input]!";
|
|
63221
|
-
where: "metric_bool_exp";
|
|
63222
|
-
};
|
|
63223
|
-
};
|
|
63224
|
-
metrics: {
|
|
63225
|
-
__type: "[metric!]!";
|
|
63226
|
-
__args: {
|
|
63227
|
-
distinct_on: "[metric_select_column!]";
|
|
63228
|
-
limit: "Int";
|
|
63229
|
-
offset: "Int";
|
|
63230
|
-
order_by: "[metric_order_by!]";
|
|
63231
|
-
where: "metric_bool_exp";
|
|
63232
|
-
};
|
|
63233
|
-
};
|
|
63234
62833
|
metricsActiveListingCreated: {
|
|
63235
62834
|
__type: "[metricsActiveListingCreatedReturnType!]!";
|
|
63236
62835
|
__args: {
|
|
@@ -83021,184 +82620,6 @@ export interface listing_variance_fields {
|
|
|
83021
82620
|
centTaxStartingBalance?: Maybe<ScalarsEnums["Float"]>;
|
|
83022
82621
|
}
|
|
83023
82622
|
|
|
83024
|
-
/**
|
|
83025
|
-
* columns and relationships of "metric"
|
|
83026
|
-
*/
|
|
83027
|
-
export interface metric {
|
|
83028
|
-
__typename?: "metric";
|
|
83029
|
-
/**
|
|
83030
|
-
* An object relationship
|
|
83031
|
-
*/
|
|
83032
|
-
connection: connection;
|
|
83033
|
-
connectionId: ScalarsEnums["uuid"];
|
|
83034
|
-
createdAt: ScalarsEnums["timestamptz"];
|
|
83035
|
-
date: ScalarsEnums["timestamptz"];
|
|
83036
|
-
id: ScalarsEnums["uuid"];
|
|
83037
|
-
/**
|
|
83038
|
-
* An object relationship
|
|
83039
|
-
*/
|
|
83040
|
-
listingConnection?: Maybe<listing_connection>;
|
|
83041
|
-
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
83042
|
-
metadata: (args?: {
|
|
83043
|
-
/**
|
|
83044
|
-
* JSON select path
|
|
83045
|
-
*/
|
|
83046
|
-
path?: Maybe<Scalars["String"]>;
|
|
83047
|
-
}) => ScalarsEnums["jsonb"];
|
|
83048
|
-
/**
|
|
83049
|
-
* An object relationship
|
|
83050
|
-
*/
|
|
83051
|
-
tenant: tenant;
|
|
83052
|
-
tenantId: ScalarsEnums["uuid"];
|
|
83053
|
-
type: ScalarsEnums["String"];
|
|
83054
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
83055
|
-
updatedAt: ScalarsEnums["timestamptz"];
|
|
83056
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
83057
|
-
}
|
|
83058
|
-
|
|
83059
|
-
/**
|
|
83060
|
-
* aggregated selection of "metric"
|
|
83061
|
-
*/
|
|
83062
|
-
export interface metric_aggregate {
|
|
83063
|
-
__typename?: "metric_aggregate";
|
|
83064
|
-
aggregate?: Maybe<metric_aggregate_fields>;
|
|
83065
|
-
nodes: Array<metric>;
|
|
83066
|
-
}
|
|
83067
|
-
|
|
83068
|
-
/**
|
|
83069
|
-
* aggregate fields of "metric"
|
|
83070
|
-
*/
|
|
83071
|
-
export interface metric_aggregate_fields {
|
|
83072
|
-
__typename?: "metric_aggregate_fields";
|
|
83073
|
-
avg?: Maybe<metric_avg_fields>;
|
|
83074
|
-
count: (args?: {
|
|
83075
|
-
columns?: Maybe<Array<metric_select_column>>;
|
|
83076
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
83077
|
-
}) => ScalarsEnums["Int"];
|
|
83078
|
-
max?: Maybe<metric_max_fields>;
|
|
83079
|
-
min?: Maybe<metric_min_fields>;
|
|
83080
|
-
stddev?: Maybe<metric_stddev_fields>;
|
|
83081
|
-
stddev_pop?: Maybe<metric_stddev_pop_fields>;
|
|
83082
|
-
stddev_samp?: Maybe<metric_stddev_samp_fields>;
|
|
83083
|
-
sum?: Maybe<metric_sum_fields>;
|
|
83084
|
-
var_pop?: Maybe<metric_var_pop_fields>;
|
|
83085
|
-
var_samp?: Maybe<metric_var_samp_fields>;
|
|
83086
|
-
variance?: Maybe<metric_variance_fields>;
|
|
83087
|
-
}
|
|
83088
|
-
|
|
83089
|
-
/**
|
|
83090
|
-
* aggregate avg on columns
|
|
83091
|
-
*/
|
|
83092
|
-
export interface metric_avg_fields {
|
|
83093
|
-
__typename?: "metric_avg_fields";
|
|
83094
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
83095
|
-
}
|
|
83096
|
-
|
|
83097
|
-
/**
|
|
83098
|
-
* aggregate max on columns
|
|
83099
|
-
*/
|
|
83100
|
-
export interface metric_max_fields {
|
|
83101
|
-
__typename?: "metric_max_fields";
|
|
83102
|
-
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
83103
|
-
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
83104
|
-
date?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
83105
|
-
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
83106
|
-
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
83107
|
-
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
83108
|
-
type?: Maybe<ScalarsEnums["String"]>;
|
|
83109
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
83110
|
-
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
83111
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
83112
|
-
}
|
|
83113
|
-
|
|
83114
|
-
/**
|
|
83115
|
-
* aggregate min on columns
|
|
83116
|
-
*/
|
|
83117
|
-
export interface metric_min_fields {
|
|
83118
|
-
__typename?: "metric_min_fields";
|
|
83119
|
-
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
83120
|
-
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
83121
|
-
date?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
83122
|
-
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
83123
|
-
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
83124
|
-
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
83125
|
-
type?: Maybe<ScalarsEnums["String"]>;
|
|
83126
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
83127
|
-
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
83128
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
83129
|
-
}
|
|
83130
|
-
|
|
83131
|
-
/**
|
|
83132
|
-
* response of any mutation on the table "metric"
|
|
83133
|
-
*/
|
|
83134
|
-
export interface metric_mutation_response {
|
|
83135
|
-
__typename?: "metric_mutation_response";
|
|
83136
|
-
/**
|
|
83137
|
-
* number of rows affected by the mutation
|
|
83138
|
-
*/
|
|
83139
|
-
affected_rows: ScalarsEnums["Int"];
|
|
83140
|
-
/**
|
|
83141
|
-
* data from the rows affected by the mutation
|
|
83142
|
-
*/
|
|
83143
|
-
returning: Array<metric>;
|
|
83144
|
-
}
|
|
83145
|
-
|
|
83146
|
-
/**
|
|
83147
|
-
* aggregate stddev on columns
|
|
83148
|
-
*/
|
|
83149
|
-
export interface metric_stddev_fields {
|
|
83150
|
-
__typename?: "metric_stddev_fields";
|
|
83151
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
83152
|
-
}
|
|
83153
|
-
|
|
83154
|
-
/**
|
|
83155
|
-
* aggregate stddev_pop on columns
|
|
83156
|
-
*/
|
|
83157
|
-
export interface metric_stddev_pop_fields {
|
|
83158
|
-
__typename?: "metric_stddev_pop_fields";
|
|
83159
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
83160
|
-
}
|
|
83161
|
-
|
|
83162
|
-
/**
|
|
83163
|
-
* aggregate stddev_samp on columns
|
|
83164
|
-
*/
|
|
83165
|
-
export interface metric_stddev_samp_fields {
|
|
83166
|
-
__typename?: "metric_stddev_samp_fields";
|
|
83167
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
83168
|
-
}
|
|
83169
|
-
|
|
83170
|
-
/**
|
|
83171
|
-
* aggregate sum on columns
|
|
83172
|
-
*/
|
|
83173
|
-
export interface metric_sum_fields {
|
|
83174
|
-
__typename?: "metric_sum_fields";
|
|
83175
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
83176
|
-
}
|
|
83177
|
-
|
|
83178
|
-
/**
|
|
83179
|
-
* aggregate var_pop on columns
|
|
83180
|
-
*/
|
|
83181
|
-
export interface metric_var_pop_fields {
|
|
83182
|
-
__typename?: "metric_var_pop_fields";
|
|
83183
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
83184
|
-
}
|
|
83185
|
-
|
|
83186
|
-
/**
|
|
83187
|
-
* aggregate var_samp on columns
|
|
83188
|
-
*/
|
|
83189
|
-
export interface metric_var_samp_fields {
|
|
83190
|
-
__typename?: "metric_var_samp_fields";
|
|
83191
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
83192
|
-
}
|
|
83193
|
-
|
|
83194
|
-
/**
|
|
83195
|
-
* aggregate variance on columns
|
|
83196
|
-
*/
|
|
83197
|
-
export interface metric_variance_fields {
|
|
83198
|
-
__typename?: "metric_variance_fields";
|
|
83199
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
83200
|
-
}
|
|
83201
|
-
|
|
83202
82623
|
export interface metricsActiveListingCreatedReturnType {
|
|
83203
82624
|
__typename?: "metricsActiveListingCreatedReturnType";
|
|
83204
82625
|
created?: Maybe<ScalarsEnums["bigint"]>;
|
|
@@ -83771,10 +83192,6 @@ export interface Mutation {
|
|
|
83771
83192
|
deleteListings: (args: {
|
|
83772
83193
|
where: listing_bool_exp;
|
|
83773
83194
|
}) => Maybe<listing_mutation_response>;
|
|
83774
|
-
deleteMetric: (args: { id: Scalars["uuid"] }) => Maybe<metric>;
|
|
83775
|
-
deleteMetrics: (args: {
|
|
83776
|
-
where: metric_bool_exp;
|
|
83777
|
-
}) => Maybe<metric_mutation_response>;
|
|
83778
83195
|
deleteMonitorConnection: (args: {
|
|
83779
83196
|
id: Scalars["uuid"];
|
|
83780
83197
|
}) => Maybe<monitorConnection>;
|
|
@@ -84564,14 +83981,6 @@ export interface Mutation {
|
|
|
84564
83981
|
objects: Array<listing_insert_input>;
|
|
84565
83982
|
on_conflict?: Maybe<listing_on_conflict>;
|
|
84566
83983
|
}) => Maybe<listing_mutation_response>;
|
|
84567
|
-
insertMetric: (args: {
|
|
84568
|
-
object: metric_insert_input;
|
|
84569
|
-
on_conflict?: Maybe<metric_on_conflict>;
|
|
84570
|
-
}) => Maybe<metric>;
|
|
84571
|
-
insertMetrics: (args: {
|
|
84572
|
-
objects: Array<metric_insert_input>;
|
|
84573
|
-
on_conflict?: Maybe<metric_on_conflict>;
|
|
84574
|
-
}) => Maybe<metric_mutation_response>;
|
|
84575
83984
|
insertMonitorConnection: (args: {
|
|
84576
83985
|
object: monitorConnection_insert_input;
|
|
84577
83986
|
on_conflict?: Maybe<monitorConnection_on_conflict>;
|
|
@@ -85999,26 +85408,6 @@ export interface Mutation {
|
|
|
85999
85408
|
updateManyUserCompanyUsers: (args: {
|
|
86000
85409
|
updates: Array<user_company_user_updates>;
|
|
86001
85410
|
}) => Maybe<Array<Maybe<user_company_user_mutation_response>>>;
|
|
86002
|
-
updateMetric: (args: {
|
|
86003
|
-
_append?: Maybe<metric_append_input>;
|
|
86004
|
-
_delete_at_path?: Maybe<metric_delete_at_path_input>;
|
|
86005
|
-
_delete_elem?: Maybe<metric_delete_elem_input>;
|
|
86006
|
-
_delete_key?: Maybe<metric_delete_key_input>;
|
|
86007
|
-
_inc?: Maybe<metric_inc_input>;
|
|
86008
|
-
_prepend?: Maybe<metric_prepend_input>;
|
|
86009
|
-
_set?: Maybe<metric_set_input>;
|
|
86010
|
-
pk_columns: metric_pk_columns_input;
|
|
86011
|
-
}) => Maybe<metric>;
|
|
86012
|
-
updateMetrics: (args: {
|
|
86013
|
-
_append?: Maybe<metric_append_input>;
|
|
86014
|
-
_delete_at_path?: Maybe<metric_delete_at_path_input>;
|
|
86015
|
-
_delete_elem?: Maybe<metric_delete_elem_input>;
|
|
86016
|
-
_delete_key?: Maybe<metric_delete_key_input>;
|
|
86017
|
-
_inc?: Maybe<metric_inc_input>;
|
|
86018
|
-
_prepend?: Maybe<metric_prepend_input>;
|
|
86019
|
-
_set?: Maybe<metric_set_input>;
|
|
86020
|
-
where: metric_bool_exp;
|
|
86021
|
-
}) => Maybe<metric_mutation_response>;
|
|
86022
85411
|
updateMonitorConnection: (args: {
|
|
86023
85412
|
_inc?: Maybe<monitorConnection_inc_input>;
|
|
86024
85413
|
_set?: Maybe<monitorConnection_set_input>;
|
|
@@ -86720,9 +86109,6 @@ export interface Mutation {
|
|
|
86720
86109
|
update_listing_status_many: (args: {
|
|
86721
86110
|
updates: Array<listing_status_updates>;
|
|
86722
86111
|
}) => Maybe<Array<Maybe<listing_status_mutation_response>>>;
|
|
86723
|
-
update_metric_many: (args: {
|
|
86724
|
-
updates: Array<metric_updates>;
|
|
86725
|
-
}) => Maybe<Array<Maybe<metric_mutation_response>>>;
|
|
86726
86112
|
update_owner_pms_status: (args: {
|
|
86727
86113
|
_set?: Maybe<owner_pms_status_set_input>;
|
|
86728
86114
|
where: owner_pms_status_bool_exp;
|
|
@@ -87843,9 +87229,12 @@ export interface owner_statement {
|
|
|
87843
87229
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Int"]>;
|
|
87844
87230
|
centBalanceEnd?: Maybe<ScalarsEnums["bigint"]>;
|
|
87845
87231
|
centBalanceStart?: Maybe<ScalarsEnums["bigint"]>;
|
|
87232
|
+
centExpenses?: Maybe<ScalarsEnums["bigint"]>;
|
|
87233
|
+
centNetRevenue?: Maybe<ScalarsEnums["bigint"]>;
|
|
87846
87234
|
centPayedOut?: Maybe<ScalarsEnums["Int"]>;
|
|
87847
87235
|
centRentalRevenue?: Maybe<ScalarsEnums["Int"]>;
|
|
87848
87236
|
centTotal?: Maybe<ScalarsEnums["bigint"]>;
|
|
87237
|
+
centTransfer?: Maybe<ScalarsEnums["bigint"]>;
|
|
87849
87238
|
createdAt: ScalarsEnums["timestamptz"];
|
|
87850
87239
|
currency?: Maybe<ScalarsEnums["currency_enum"]>;
|
|
87851
87240
|
endAt: ScalarsEnums["timestamptz"];
|
|
@@ -88197,9 +87586,12 @@ export interface owner_statement_avg_fields {
|
|
|
88197
87586
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
88198
87587
|
centBalanceEnd?: Maybe<ScalarsEnums["Float"]>;
|
|
88199
87588
|
centBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
87589
|
+
centExpenses?: Maybe<ScalarsEnums["Float"]>;
|
|
87590
|
+
centNetRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
88200
87591
|
centPayedOut?: Maybe<ScalarsEnums["Float"]>;
|
|
88201
87592
|
centRentalRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
88202
87593
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
87594
|
+
centTransfer?: Maybe<ScalarsEnums["Float"]>;
|
|
88203
87595
|
}
|
|
88204
87596
|
|
|
88205
87597
|
/**
|
|
@@ -88815,9 +88207,12 @@ export interface owner_statement_max_fields {
|
|
|
88815
88207
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Int"]>;
|
|
88816
88208
|
centBalanceEnd?: Maybe<ScalarsEnums["bigint"]>;
|
|
88817
88209
|
centBalanceStart?: Maybe<ScalarsEnums["bigint"]>;
|
|
88210
|
+
centExpenses?: Maybe<ScalarsEnums["bigint"]>;
|
|
88211
|
+
centNetRevenue?: Maybe<ScalarsEnums["bigint"]>;
|
|
88818
88212
|
centPayedOut?: Maybe<ScalarsEnums["Int"]>;
|
|
88819
88213
|
centRentalRevenue?: Maybe<ScalarsEnums["Int"]>;
|
|
88820
88214
|
centTotal?: Maybe<ScalarsEnums["bigint"]>;
|
|
88215
|
+
centTransfer?: Maybe<ScalarsEnums["bigint"]>;
|
|
88821
88216
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
88822
88217
|
endAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
88823
88218
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -88843,9 +88238,12 @@ export interface owner_statement_min_fields {
|
|
|
88843
88238
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Int"]>;
|
|
88844
88239
|
centBalanceEnd?: Maybe<ScalarsEnums["bigint"]>;
|
|
88845
88240
|
centBalanceStart?: Maybe<ScalarsEnums["bigint"]>;
|
|
88241
|
+
centExpenses?: Maybe<ScalarsEnums["bigint"]>;
|
|
88242
|
+
centNetRevenue?: Maybe<ScalarsEnums["bigint"]>;
|
|
88846
88243
|
centPayedOut?: Maybe<ScalarsEnums["Int"]>;
|
|
88847
88244
|
centRentalRevenue?: Maybe<ScalarsEnums["Int"]>;
|
|
88848
88245
|
centTotal?: Maybe<ScalarsEnums["bigint"]>;
|
|
88246
|
+
centTransfer?: Maybe<ScalarsEnums["bigint"]>;
|
|
88849
88247
|
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
88850
88248
|
endAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
88851
88249
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
@@ -89126,9 +88524,12 @@ export interface owner_statement_stddev_fields {
|
|
|
89126
88524
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
89127
88525
|
centBalanceEnd?: Maybe<ScalarsEnums["Float"]>;
|
|
89128
88526
|
centBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
88527
|
+
centExpenses?: Maybe<ScalarsEnums["Float"]>;
|
|
88528
|
+
centNetRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89129
88529
|
centPayedOut?: Maybe<ScalarsEnums["Float"]>;
|
|
89130
88530
|
centRentalRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89131
88531
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
88532
|
+
centTransfer?: Maybe<ScalarsEnums["Float"]>;
|
|
89132
88533
|
}
|
|
89133
88534
|
|
|
89134
88535
|
/**
|
|
@@ -89140,9 +88541,12 @@ export interface owner_statement_stddev_pop_fields {
|
|
|
89140
88541
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
89141
88542
|
centBalanceEnd?: Maybe<ScalarsEnums["Float"]>;
|
|
89142
88543
|
centBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
88544
|
+
centExpenses?: Maybe<ScalarsEnums["Float"]>;
|
|
88545
|
+
centNetRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89143
88546
|
centPayedOut?: Maybe<ScalarsEnums["Float"]>;
|
|
89144
88547
|
centRentalRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89145
88548
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
88549
|
+
centTransfer?: Maybe<ScalarsEnums["Float"]>;
|
|
89146
88550
|
}
|
|
89147
88551
|
|
|
89148
88552
|
/**
|
|
@@ -89154,9 +88558,12 @@ export interface owner_statement_stddev_samp_fields {
|
|
|
89154
88558
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
89155
88559
|
centBalanceEnd?: Maybe<ScalarsEnums["Float"]>;
|
|
89156
88560
|
centBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
88561
|
+
centExpenses?: Maybe<ScalarsEnums["Float"]>;
|
|
88562
|
+
centNetRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89157
88563
|
centPayedOut?: Maybe<ScalarsEnums["Float"]>;
|
|
89158
88564
|
centRentalRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89159
88565
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
88566
|
+
centTransfer?: Maybe<ScalarsEnums["Float"]>;
|
|
89160
88567
|
}
|
|
89161
88568
|
|
|
89162
88569
|
/**
|
|
@@ -89168,9 +88575,12 @@ export interface owner_statement_sum_fields {
|
|
|
89168
88575
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Int"]>;
|
|
89169
88576
|
centBalanceEnd?: Maybe<ScalarsEnums["bigint"]>;
|
|
89170
88577
|
centBalanceStart?: Maybe<ScalarsEnums["bigint"]>;
|
|
88578
|
+
centExpenses?: Maybe<ScalarsEnums["bigint"]>;
|
|
88579
|
+
centNetRevenue?: Maybe<ScalarsEnums["bigint"]>;
|
|
89171
88580
|
centPayedOut?: Maybe<ScalarsEnums["Int"]>;
|
|
89172
88581
|
centRentalRevenue?: Maybe<ScalarsEnums["Int"]>;
|
|
89173
88582
|
centTotal?: Maybe<ScalarsEnums["bigint"]>;
|
|
88583
|
+
centTransfer?: Maybe<ScalarsEnums["bigint"]>;
|
|
89174
88584
|
}
|
|
89175
88585
|
|
|
89176
88586
|
/**
|
|
@@ -89447,9 +88857,12 @@ export interface owner_statement_var_pop_fields {
|
|
|
89447
88857
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
89448
88858
|
centBalanceEnd?: Maybe<ScalarsEnums["Float"]>;
|
|
89449
88859
|
centBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
88860
|
+
centExpenses?: Maybe<ScalarsEnums["Float"]>;
|
|
88861
|
+
centNetRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89450
88862
|
centPayedOut?: Maybe<ScalarsEnums["Float"]>;
|
|
89451
88863
|
centRentalRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89452
88864
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
88865
|
+
centTransfer?: Maybe<ScalarsEnums["Float"]>;
|
|
89453
88866
|
}
|
|
89454
88867
|
|
|
89455
88868
|
/**
|
|
@@ -89461,9 +88874,12 @@ export interface owner_statement_var_samp_fields {
|
|
|
89461
88874
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
89462
88875
|
centBalanceEnd?: Maybe<ScalarsEnums["Float"]>;
|
|
89463
88876
|
centBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
88877
|
+
centExpenses?: Maybe<ScalarsEnums["Float"]>;
|
|
88878
|
+
centNetRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89464
88879
|
centPayedOut?: Maybe<ScalarsEnums["Float"]>;
|
|
89465
88880
|
centRentalRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89466
88881
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
88882
|
+
centTransfer?: Maybe<ScalarsEnums["Float"]>;
|
|
89467
88883
|
}
|
|
89468
88884
|
|
|
89469
88885
|
/**
|
|
@@ -89475,9 +88891,12 @@ export interface owner_statement_variance_fields {
|
|
|
89475
88891
|
centAccountingBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
89476
88892
|
centBalanceEnd?: Maybe<ScalarsEnums["Float"]>;
|
|
89477
88893
|
centBalanceStart?: Maybe<ScalarsEnums["Float"]>;
|
|
88894
|
+
centExpenses?: Maybe<ScalarsEnums["Float"]>;
|
|
88895
|
+
centNetRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89478
88896
|
centPayedOut?: Maybe<ScalarsEnums["Float"]>;
|
|
89479
88897
|
centRentalRevenue?: Maybe<ScalarsEnums["Float"]>;
|
|
89480
88898
|
centTotal?: Maybe<ScalarsEnums["Float"]>;
|
|
88899
|
+
centTransfer?: Maybe<ScalarsEnums["Float"]>;
|
|
89481
88900
|
}
|
|
89482
88901
|
|
|
89483
88902
|
/**
|
|
@@ -92500,21 +91919,6 @@ export interface Query {
|
|
|
92500
91919
|
order_by?: Maybe<Array<listing_order_by>>;
|
|
92501
91920
|
where?: Maybe<listing_bool_exp>;
|
|
92502
91921
|
}) => Array<listing>;
|
|
92503
|
-
metric: (args: { id: Scalars["uuid"] }) => Maybe<metric>;
|
|
92504
|
-
metricAggregate: (args?: {
|
|
92505
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
92506
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
92507
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
92508
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
92509
|
-
where?: Maybe<metric_bool_exp>;
|
|
92510
|
-
}) => metric_aggregate;
|
|
92511
|
-
metrics: (args?: {
|
|
92512
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
92513
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
92514
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
92515
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
92516
|
-
where?: Maybe<metric_bool_exp>;
|
|
92517
|
-
}) => Array<metric>;
|
|
92518
91922
|
metricsActiveListingCreated: (args: {
|
|
92519
91923
|
args: metricsActiveListingCreated_arguments;
|
|
92520
91924
|
distinct_on?: Maybe<Array<metricsActiveListingCreatedReturnType_enum_name>>;
|
|
@@ -99570,26 +98974,6 @@ export interface Subscription {
|
|
|
99570
98974
|
order_by?: Maybe<Array<listing_order_by>>;
|
|
99571
98975
|
where?: Maybe<listing_bool_exp>;
|
|
99572
98976
|
}) => Array<listing>;
|
|
99573
|
-
metric: (args: { id: Scalars["uuid"] }) => Maybe<metric>;
|
|
99574
|
-
metricAggregate: (args?: {
|
|
99575
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
99576
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99577
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99578
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
99579
|
-
where?: Maybe<metric_bool_exp>;
|
|
99580
|
-
}) => metric_aggregate;
|
|
99581
|
-
metric_stream: (args: {
|
|
99582
|
-
batch_size: Scalars["Int"];
|
|
99583
|
-
cursor: Array<Maybe<metric_stream_cursor_input>>;
|
|
99584
|
-
where?: Maybe<metric_bool_exp>;
|
|
99585
|
-
}) => Array<metric>;
|
|
99586
|
-
metrics: (args?: {
|
|
99587
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
99588
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99589
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99590
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
99591
|
-
where?: Maybe<metric_bool_exp>;
|
|
99592
|
-
}) => Array<metric>;
|
|
99593
98977
|
metricsActiveListingCreated: (args: {
|
|
99594
98978
|
args: metricsActiveListingCreated_arguments;
|
|
99595
98979
|
distinct_on?: Maybe<Array<metricsActiveListingCreatedReturnType_enum_name>>;
|
|
@@ -107649,20 +107033,6 @@ export interface SchemaObjectTypes {
|
|
|
107649
107033
|
listing_var_pop_fields: listing_var_pop_fields;
|
|
107650
107034
|
listing_var_samp_fields: listing_var_samp_fields;
|
|
107651
107035
|
listing_variance_fields: listing_variance_fields;
|
|
107652
|
-
metric: metric;
|
|
107653
|
-
metric_aggregate: metric_aggregate;
|
|
107654
|
-
metric_aggregate_fields: metric_aggregate_fields;
|
|
107655
|
-
metric_avg_fields: metric_avg_fields;
|
|
107656
|
-
metric_max_fields: metric_max_fields;
|
|
107657
|
-
metric_min_fields: metric_min_fields;
|
|
107658
|
-
metric_mutation_response: metric_mutation_response;
|
|
107659
|
-
metric_stddev_fields: metric_stddev_fields;
|
|
107660
|
-
metric_stddev_pop_fields: metric_stddev_pop_fields;
|
|
107661
|
-
metric_stddev_samp_fields: metric_stddev_samp_fields;
|
|
107662
|
-
metric_sum_fields: metric_sum_fields;
|
|
107663
|
-
metric_var_pop_fields: metric_var_pop_fields;
|
|
107664
|
-
metric_var_samp_fields: metric_var_samp_fields;
|
|
107665
|
-
metric_variance_fields: metric_variance_fields;
|
|
107666
107036
|
metricsActiveListingCreatedReturnType: metricsActiveListingCreatedReturnType;
|
|
107667
107037
|
metricsBankRecordBalancesReturnType: metricsBankRecordBalancesReturnType;
|
|
107668
107038
|
metricsCurrenciesReturnType: metricsCurrenciesReturnType;
|
|
@@ -108749,20 +108119,6 @@ export type SchemaObjectTypesNames =
|
|
|
108749
108119
|
| "listing_var_pop_fields"
|
|
108750
108120
|
| "listing_var_samp_fields"
|
|
108751
108121
|
| "listing_variance_fields"
|
|
108752
|
-
| "metric"
|
|
108753
|
-
| "metric_aggregate"
|
|
108754
|
-
| "metric_aggregate_fields"
|
|
108755
|
-
| "metric_avg_fields"
|
|
108756
|
-
| "metric_max_fields"
|
|
108757
|
-
| "metric_min_fields"
|
|
108758
|
-
| "metric_mutation_response"
|
|
108759
|
-
| "metric_stddev_fields"
|
|
108760
|
-
| "metric_stddev_pop_fields"
|
|
108761
|
-
| "metric_stddev_samp_fields"
|
|
108762
|
-
| "metric_sum_fields"
|
|
108763
|
-
| "metric_var_pop_fields"
|
|
108764
|
-
| "metric_var_samp_fields"
|
|
108765
|
-
| "metric_variance_fields"
|
|
108766
108122
|
| "metricsActiveListingCreatedReturnType"
|
|
108767
108123
|
| "metricsBankRecordBalancesReturnType"
|
|
108768
108124
|
| "metricsCurrenciesReturnType"
|
|
@@ -109790,9 +109146,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109790
109146
|
listing_status_select_column: listing_status_select_column | undefined;
|
|
109791
109147
|
listing_status_update_column: listing_status_update_column | undefined;
|
|
109792
109148
|
listing_update_column: listing_update_column | undefined;
|
|
109793
|
-
metric_constraint: metric_constraint | undefined;
|
|
109794
|
-
metric_select_column: metric_select_column | undefined;
|
|
109795
|
-
metric_update_column: metric_update_column | undefined;
|
|
109796
109149
|
metricsActiveListingCreatedReturnType_enum_name:
|
|
109797
109150
|
| metricsActiveListingCreatedReturnType_enum_name
|
|
109798
109151
|
| undefined;
|