@vrplatform/graphql 1.1.2 → 1.1.3
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 +0 -821
- package/build/main/gqty/schema.generated.js +0 -319
- package/build/module/constants.d.ts +1 -1
- package/build/module/constants.js +1 -1
- package/build/module/gqty/schema.generated.d.ts +0 -821
- package/build/module/gqty/schema.generated.js +0 -319
- package/package.json +1 -1
- package/src/constants.ts +1 -1
- package/src/gqty/schema.generated.d.ts +0 -821
- package/src/gqty/schema.generated.js +0 -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<
|
|
@@ -38012,17 +37785,6 @@ export declare const generatedSchema: {
|
|
|
38012
37785
|
_set: { __type: "file_storage_set_input" };
|
|
38013
37786
|
where: { __type: "file_storage_bool_exp!" };
|
|
38014
37787
|
};
|
|
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
37788
|
issueConnectionsNeedVersionUpgradeReturnType: {
|
|
38027
37789
|
__typename: { __type: "String!" };
|
|
38028
37790
|
appIcon: { __type: "String!" };
|
|
@@ -41642,211 +41404,6 @@ export declare const generatedSchema: {
|
|
|
41642
41404
|
centExpenseReserve: { __type: "order_by" };
|
|
41643
41405
|
centTaxStartingBalance: { __type: "order_by" };
|
|
41644
41406
|
};
|
|
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
41407
|
metricsActiveListingCreatedReturnType: {
|
|
41851
41408
|
__typename: { __type: "String!" };
|
|
41852
41409
|
created: { __type: "bigint" };
|
|
@@ -42883,11 +42440,6 @@ export declare const generatedSchema: {
|
|
|
42883
42440
|
__type: "listing_mutation_response";
|
|
42884
42441
|
__args: { where: "listing_bool_exp!" };
|
|
42885
42442
|
};
|
|
42886
|
-
deleteMetric: { __type: "metric"; __args: { id: "uuid!" } };
|
|
42887
|
-
deleteMetrics: {
|
|
42888
|
-
__type: "metric_mutation_response";
|
|
42889
|
-
__args: { where: "metric_bool_exp!" };
|
|
42890
|
-
};
|
|
42891
42443
|
deleteMonitorConnection: {
|
|
42892
42444
|
__type: "monitorConnection";
|
|
42893
42445
|
__args: { id: "uuid!" };
|
|
@@ -44112,20 +43664,6 @@ export declare const generatedSchema: {
|
|
|
44112
43664
|
on_conflict: "listing_on_conflict";
|
|
44113
43665
|
};
|
|
44114
43666
|
};
|
|
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
43667
|
insertMonitorConnection: {
|
|
44130
43668
|
__type: "monitorConnection";
|
|
44131
43669
|
__args: {
|
|
@@ -46360,32 +45898,6 @@ export declare const generatedSchema: {
|
|
|
46360
45898
|
__type: "[user_company_user_mutation_response]";
|
|
46361
45899
|
__args: { updates: "[user_company_user_updates!]!" };
|
|
46362
45900
|
};
|
|
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
45901
|
updateMonitorConnection: {
|
|
46390
45902
|
__type: "monitorConnection";
|
|
46391
45903
|
__args: {
|
|
@@ -47393,10 +46905,6 @@ export declare const generatedSchema: {
|
|
|
47393
46905
|
__type: "[listing_status_mutation_response]";
|
|
47394
46906
|
__args: { updates: "[listing_status_updates!]!" };
|
|
47395
46907
|
};
|
|
47396
|
-
update_metric_many: {
|
|
47397
|
-
__type: "[metric_mutation_response]";
|
|
47398
|
-
__args: { updates: "[metric_updates!]!" };
|
|
47399
|
-
};
|
|
47400
46908
|
update_owner_pms_status: {
|
|
47401
46909
|
__type: "owner_pms_status_mutation_response";
|
|
47402
46910
|
__args: {
|
|
@@ -54243,27 +53751,6 @@ export declare const generatedSchema: {
|
|
|
54243
53751
|
where: "listing_bool_exp";
|
|
54244
53752
|
};
|
|
54245
53753
|
};
|
|
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
53754
|
metricsActiveListingCreated: {
|
|
54268
53755
|
__type: "[metricsActiveListingCreatedReturnType!]!";
|
|
54269
53756
|
__args: {
|
|
@@ -63202,35 +62689,6 @@ export declare const generatedSchema: {
|
|
|
63202
62689
|
where: "listing_bool_exp";
|
|
63203
62690
|
};
|
|
63204
62691
|
};
|
|
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
62692
|
metricsActiveListingCreated: {
|
|
63235
62693
|
__type: "[metricsActiveListingCreatedReturnType!]!";
|
|
63236
62694
|
__args: {
|
|
@@ -83021,184 +82479,6 @@ export interface listing_variance_fields {
|
|
|
83021
82479
|
centTaxStartingBalance?: Maybe<ScalarsEnums["Float"]>;
|
|
83022
82480
|
}
|
|
83023
82481
|
|
|
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
82482
|
export interface metricsActiveListingCreatedReturnType {
|
|
83203
82483
|
__typename?: "metricsActiveListingCreatedReturnType";
|
|
83204
82484
|
created?: Maybe<ScalarsEnums["bigint"]>;
|
|
@@ -83771,10 +83051,6 @@ export interface Mutation {
|
|
|
83771
83051
|
deleteListings: (args: {
|
|
83772
83052
|
where: listing_bool_exp;
|
|
83773
83053
|
}) => 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
83054
|
deleteMonitorConnection: (args: {
|
|
83779
83055
|
id: Scalars["uuid"];
|
|
83780
83056
|
}) => Maybe<monitorConnection>;
|
|
@@ -84564,14 +83840,6 @@ export interface Mutation {
|
|
|
84564
83840
|
objects: Array<listing_insert_input>;
|
|
84565
83841
|
on_conflict?: Maybe<listing_on_conflict>;
|
|
84566
83842
|
}) => 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
83843
|
insertMonitorConnection: (args: {
|
|
84576
83844
|
object: monitorConnection_insert_input;
|
|
84577
83845
|
on_conflict?: Maybe<monitorConnection_on_conflict>;
|
|
@@ -85999,26 +85267,6 @@ export interface Mutation {
|
|
|
85999
85267
|
updateManyUserCompanyUsers: (args: {
|
|
86000
85268
|
updates: Array<user_company_user_updates>;
|
|
86001
85269
|
}) => 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
85270
|
updateMonitorConnection: (args: {
|
|
86023
85271
|
_inc?: Maybe<monitorConnection_inc_input>;
|
|
86024
85272
|
_set?: Maybe<monitorConnection_set_input>;
|
|
@@ -86720,9 +85968,6 @@ export interface Mutation {
|
|
|
86720
85968
|
update_listing_status_many: (args: {
|
|
86721
85969
|
updates: Array<listing_status_updates>;
|
|
86722
85970
|
}) => 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
85971
|
update_owner_pms_status: (args: {
|
|
86727
85972
|
_set?: Maybe<owner_pms_status_set_input>;
|
|
86728
85973
|
where: owner_pms_status_bool_exp;
|
|
@@ -92500,21 +91745,6 @@ export interface Query {
|
|
|
92500
91745
|
order_by?: Maybe<Array<listing_order_by>>;
|
|
92501
91746
|
where?: Maybe<listing_bool_exp>;
|
|
92502
91747
|
}) => 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
91748
|
metricsActiveListingCreated: (args: {
|
|
92519
91749
|
args: metricsActiveListingCreated_arguments;
|
|
92520
91750
|
distinct_on?: Maybe<Array<metricsActiveListingCreatedReturnType_enum_name>>;
|
|
@@ -99570,26 +98800,6 @@ export interface Subscription {
|
|
|
99570
98800
|
order_by?: Maybe<Array<listing_order_by>>;
|
|
99571
98801
|
where?: Maybe<listing_bool_exp>;
|
|
99572
98802
|
}) => 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
98803
|
metricsActiveListingCreated: (args: {
|
|
99594
98804
|
args: metricsActiveListingCreated_arguments;
|
|
99595
98805
|
distinct_on?: Maybe<Array<metricsActiveListingCreatedReturnType_enum_name>>;
|
|
@@ -107649,20 +106859,6 @@ export interface SchemaObjectTypes {
|
|
|
107649
106859
|
listing_var_pop_fields: listing_var_pop_fields;
|
|
107650
106860
|
listing_var_samp_fields: listing_var_samp_fields;
|
|
107651
106861
|
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
106862
|
metricsActiveListingCreatedReturnType: metricsActiveListingCreatedReturnType;
|
|
107667
106863
|
metricsBankRecordBalancesReturnType: metricsBankRecordBalancesReturnType;
|
|
107668
106864
|
metricsCurrenciesReturnType: metricsCurrenciesReturnType;
|
|
@@ -108749,20 +107945,6 @@ export type SchemaObjectTypesNames =
|
|
|
108749
107945
|
| "listing_var_pop_fields"
|
|
108750
107946
|
| "listing_var_samp_fields"
|
|
108751
107947
|
| "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
107948
|
| "metricsActiveListingCreatedReturnType"
|
|
108767
107949
|
| "metricsBankRecordBalancesReturnType"
|
|
108768
107950
|
| "metricsCurrenciesReturnType"
|
|
@@ -109790,9 +108972,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109790
108972
|
listing_status_select_column: listing_status_select_column | undefined;
|
|
109791
108973
|
listing_status_update_column: listing_status_update_column | undefined;
|
|
109792
108974
|
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
108975
|
metricsActiveListingCreatedReturnType_enum_name:
|
|
109797
108976
|
| metricsActiveListingCreatedReturnType_enum_name
|
|
109798
108977
|
| undefined;
|