@vrplatform/graphql 1.1.29 → 1.1.30
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/gqty/schema.generated.d.ts +31 -0
- package/build/main/gqty/schema.generated.js +12 -0
- package/build/module/gqty/schema.generated.d.ts +31 -0
- package/build/module/gqty/schema.generated.js +12 -0
- package/package.json +1 -1
- package/src/gqty/schema.generated.d.ts +31 -0
- package/src/gqty/schema.generated.js +12 -0
|
@@ -7167,6 +7167,8 @@ export interface core_flow_setting_bool_exp {
|
|
|
7167
7167
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
7168
7168
|
listing?: InputMaybe<listing_bool_exp>;
|
|
7169
7169
|
listing_id?: InputMaybe<uuid_comparison_exp>;
|
|
7170
|
+
rate?: InputMaybe<rate_bool_exp>;
|
|
7171
|
+
rateId?: InputMaybe<uuid_comparison_exp>;
|
|
7170
7172
|
setting_key?: InputMaybe<String_comparison_exp>;
|
|
7171
7173
|
tenant?: InputMaybe<tenant_bool_exp>;
|
|
7172
7174
|
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -7212,6 +7214,8 @@ export interface core_flow_setting_insert_input {
|
|
|
7212
7214
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7213
7215
|
listing?: InputMaybe<listing_obj_rel_insert_input>;
|
|
7214
7216
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7217
|
+
rate?: InputMaybe<rate_obj_rel_insert_input>;
|
|
7218
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7215
7219
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7216
7220
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
7217
7221
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -7242,6 +7246,8 @@ export interface core_flow_setting_order_by {
|
|
|
7242
7246
|
id?: InputMaybe<order_by>;
|
|
7243
7247
|
listing?: InputMaybe<listing_order_by>;
|
|
7244
7248
|
listing_id?: InputMaybe<order_by>;
|
|
7249
|
+
rate?: InputMaybe<rate_order_by>;
|
|
7250
|
+
rateId?: InputMaybe<order_by>;
|
|
7245
7251
|
setting_key?: InputMaybe<order_by>;
|
|
7246
7252
|
tenant?: InputMaybe<tenant_order_by>;
|
|
7247
7253
|
tenantId?: InputMaybe<order_by>;
|
|
@@ -7278,6 +7284,8 @@ export type core_flow_setting_select_column =
|
|
|
7278
7284
|
/** column name */
|
|
7279
7285
|
| "listing_id"
|
|
7280
7286
|
/** column name */
|
|
7287
|
+
| "rateId"
|
|
7288
|
+
/** column name */
|
|
7281
7289
|
| "setting_key"
|
|
7282
7290
|
/** column name */
|
|
7283
7291
|
| "tenantId"
|
|
@@ -7296,6 +7304,7 @@ export interface core_flow_setting_set_input {
|
|
|
7296
7304
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7297
7305
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7298
7306
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7307
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7299
7308
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7300
7309
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7301
7310
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -7320,6 +7329,7 @@ export interface core_flow_setting_stream_cursor_value_input {
|
|
|
7320
7329
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7321
7330
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7322
7331
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7332
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7323
7333
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7324
7334
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7325
7335
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -7345,6 +7355,8 @@ export type core_flow_setting_update_column =
|
|
|
7345
7355
|
/** column name */
|
|
7346
7356
|
| "listing_id"
|
|
7347
7357
|
/** column name */
|
|
7358
|
+
| "rateId"
|
|
7359
|
+
/** column name */
|
|
7348
7360
|
| "setting_key"
|
|
7349
7361
|
/** column name */
|
|
7350
7362
|
| "tenantId"
|
|
@@ -35931,6 +35943,8 @@ export declare const generatedSchema: {
|
|
|
35931
35943
|
id: { __type: "uuid!" };
|
|
35932
35944
|
listing: { __type: "listing" };
|
|
35933
35945
|
listing_id: { __type: "uuid" };
|
|
35946
|
+
rate: { __type: "rate" };
|
|
35947
|
+
rateId: { __type: "uuid" };
|
|
35934
35948
|
setting_key: { __type: "String!" };
|
|
35935
35949
|
tenant: { __type: "tenant!" };
|
|
35936
35950
|
tenantId: { __type: "uuid!" };
|
|
@@ -35973,6 +35987,8 @@ export declare const generatedSchema: {
|
|
|
35973
35987
|
id: { __type: "uuid_comparison_exp" };
|
|
35974
35988
|
listing: { __type: "listing_bool_exp" };
|
|
35975
35989
|
listing_id: { __type: "uuid_comparison_exp" };
|
|
35990
|
+
rate: { __type: "rate_bool_exp" };
|
|
35991
|
+
rateId: { __type: "uuid_comparison_exp" };
|
|
35976
35992
|
setting_key: { __type: "String_comparison_exp" };
|
|
35977
35993
|
tenant: { __type: "tenant_bool_exp" };
|
|
35978
35994
|
tenantId: { __type: "uuid_comparison_exp" };
|
|
@@ -35997,6 +36013,8 @@ export declare const generatedSchema: {
|
|
|
35997
36013
|
id: { __type: "uuid" };
|
|
35998
36014
|
listing: { __type: "listing_obj_rel_insert_input" };
|
|
35999
36015
|
listing_id: { __type: "uuid" };
|
|
36016
|
+
rate: { __type: "rate_obj_rel_insert_input" };
|
|
36017
|
+
rateId: { __type: "uuid" };
|
|
36000
36018
|
setting_key: { __type: "String" };
|
|
36001
36019
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
36002
36020
|
tenantId: { __type: "uuid" };
|
|
@@ -36013,6 +36031,7 @@ export declare const generatedSchema: {
|
|
|
36013
36031
|
flow_id: { __type: "uuid" };
|
|
36014
36032
|
id: { __type: "uuid" };
|
|
36015
36033
|
listing_id: { __type: "uuid" };
|
|
36034
|
+
rateId: { __type: "uuid" };
|
|
36016
36035
|
setting_key: { __type: "String" };
|
|
36017
36036
|
tenantId: { __type: "uuid" };
|
|
36018
36037
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36027,6 +36046,7 @@ export declare const generatedSchema: {
|
|
|
36027
36046
|
flow_id: { __type: "uuid" };
|
|
36028
36047
|
id: { __type: "uuid" };
|
|
36029
36048
|
listing_id: { __type: "uuid" };
|
|
36049
|
+
rateId: { __type: "uuid" };
|
|
36030
36050
|
setting_key: { __type: "String" };
|
|
36031
36051
|
tenantId: { __type: "uuid" };
|
|
36032
36052
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36056,6 +36076,8 @@ export declare const generatedSchema: {
|
|
|
36056
36076
|
id: { __type: "order_by" };
|
|
36057
36077
|
listing: { __type: "listing_order_by" };
|
|
36058
36078
|
listing_id: { __type: "order_by" };
|
|
36079
|
+
rate: { __type: "rate_order_by" };
|
|
36080
|
+
rateId: { __type: "order_by" };
|
|
36059
36081
|
setting_key: { __type: "order_by" };
|
|
36060
36082
|
tenant: { __type: "tenant_order_by" };
|
|
36061
36083
|
tenantId: { __type: "order_by" };
|
|
@@ -36073,6 +36095,7 @@ export declare const generatedSchema: {
|
|
|
36073
36095
|
flow_id: { __type: "uuid" };
|
|
36074
36096
|
id: { __type: "uuid" };
|
|
36075
36097
|
listing_id: { __type: "uuid" };
|
|
36098
|
+
rateId: { __type: "uuid" };
|
|
36076
36099
|
setting_key: { __type: "String" };
|
|
36077
36100
|
tenantId: { __type: "uuid" };
|
|
36078
36101
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36091,6 +36114,7 @@ export declare const generatedSchema: {
|
|
|
36091
36114
|
flow_id: { __type: "uuid" };
|
|
36092
36115
|
id: { __type: "uuid" };
|
|
36093
36116
|
listing_id: { __type: "uuid" };
|
|
36117
|
+
rateId: { __type: "uuid" };
|
|
36094
36118
|
setting_key: { __type: "String" };
|
|
36095
36119
|
tenantId: { __type: "uuid" };
|
|
36096
36120
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -77371,6 +77395,11 @@ export interface core_flow_setting {
|
|
|
77371
77395
|
*/
|
|
77372
77396
|
listing?: Maybe<listing>;
|
|
77373
77397
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77398
|
+
/**
|
|
77399
|
+
* An object relationship
|
|
77400
|
+
*/
|
|
77401
|
+
rate?: Maybe<rate>;
|
|
77402
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77374
77403
|
setting_key: ScalarsEnums["String"];
|
|
77375
77404
|
/**
|
|
77376
77405
|
* An object relationship
|
|
@@ -77421,6 +77450,7 @@ export interface core_flow_setting_max_fields {
|
|
|
77421
77450
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77422
77451
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77423
77452
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77453
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77424
77454
|
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77425
77455
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77426
77456
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -77439,6 +77469,7 @@ export interface core_flow_setting_min_fields {
|
|
|
77439
77469
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77440
77470
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77441
77471
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77472
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77442
77473
|
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77443
77474
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77444
77475
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -7808,6 +7808,8 @@ exports.generatedSchema = {
|
|
|
7808
7808
|
id: { __type: "uuid!" },
|
|
7809
7809
|
listing: { __type: "listing" },
|
|
7810
7810
|
listing_id: { __type: "uuid" },
|
|
7811
|
+
rate: { __type: "rate" },
|
|
7812
|
+
rateId: { __type: "uuid" },
|
|
7811
7813
|
setting_key: { __type: "String!" },
|
|
7812
7814
|
tenant: { __type: "tenant!" },
|
|
7813
7815
|
tenantId: { __type: "uuid!" },
|
|
@@ -7850,6 +7852,8 @@ exports.generatedSchema = {
|
|
|
7850
7852
|
id: { __type: "uuid_comparison_exp" },
|
|
7851
7853
|
listing: { __type: "listing_bool_exp" },
|
|
7852
7854
|
listing_id: { __type: "uuid_comparison_exp" },
|
|
7855
|
+
rate: { __type: "rate_bool_exp" },
|
|
7856
|
+
rateId: { __type: "uuid_comparison_exp" },
|
|
7853
7857
|
setting_key: { __type: "String_comparison_exp" },
|
|
7854
7858
|
tenant: { __type: "tenant_bool_exp" },
|
|
7855
7859
|
tenantId: { __type: "uuid_comparison_exp" },
|
|
@@ -7874,6 +7878,8 @@ exports.generatedSchema = {
|
|
|
7874
7878
|
id: { __type: "uuid" },
|
|
7875
7879
|
listing: { __type: "listing_obj_rel_insert_input" },
|
|
7876
7880
|
listing_id: { __type: "uuid" },
|
|
7881
|
+
rate: { __type: "rate_obj_rel_insert_input" },
|
|
7882
|
+
rateId: { __type: "uuid" },
|
|
7877
7883
|
setting_key: { __type: "String" },
|
|
7878
7884
|
tenant: { __type: "tenant_obj_rel_insert_input" },
|
|
7879
7885
|
tenantId: { __type: "uuid" },
|
|
@@ -7890,6 +7896,7 @@ exports.generatedSchema = {
|
|
|
7890
7896
|
flow_id: { __type: "uuid" },
|
|
7891
7897
|
id: { __type: "uuid" },
|
|
7892
7898
|
listing_id: { __type: "uuid" },
|
|
7899
|
+
rateId: { __type: "uuid" },
|
|
7893
7900
|
setting_key: { __type: "String" },
|
|
7894
7901
|
tenantId: { __type: "uuid" },
|
|
7895
7902
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7904,6 +7911,7 @@ exports.generatedSchema = {
|
|
|
7904
7911
|
flow_id: { __type: "uuid" },
|
|
7905
7912
|
id: { __type: "uuid" },
|
|
7906
7913
|
listing_id: { __type: "uuid" },
|
|
7914
|
+
rateId: { __type: "uuid" },
|
|
7907
7915
|
setting_key: { __type: "String" },
|
|
7908
7916
|
tenantId: { __type: "uuid" },
|
|
7909
7917
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7933,6 +7941,8 @@ exports.generatedSchema = {
|
|
|
7933
7941
|
id: { __type: "order_by" },
|
|
7934
7942
|
listing: { __type: "listing_order_by" },
|
|
7935
7943
|
listing_id: { __type: "order_by" },
|
|
7944
|
+
rate: { __type: "rate_order_by" },
|
|
7945
|
+
rateId: { __type: "order_by" },
|
|
7936
7946
|
setting_key: { __type: "order_by" },
|
|
7937
7947
|
tenant: { __type: "tenant_order_by" },
|
|
7938
7948
|
tenantId: { __type: "order_by" },
|
|
@@ -7950,6 +7960,7 @@ exports.generatedSchema = {
|
|
|
7950
7960
|
flow_id: { __type: "uuid" },
|
|
7951
7961
|
id: { __type: "uuid" },
|
|
7952
7962
|
listing_id: { __type: "uuid" },
|
|
7963
|
+
rateId: { __type: "uuid" },
|
|
7953
7964
|
setting_key: { __type: "String" },
|
|
7954
7965
|
tenantId: { __type: "uuid" },
|
|
7955
7966
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7968,6 +7979,7 @@ exports.generatedSchema = {
|
|
|
7968
7979
|
flow_id: { __type: "uuid" },
|
|
7969
7980
|
id: { __type: "uuid" },
|
|
7970
7981
|
listing_id: { __type: "uuid" },
|
|
7982
|
+
rateId: { __type: "uuid" },
|
|
7971
7983
|
setting_key: { __type: "String" },
|
|
7972
7984
|
tenantId: { __type: "uuid" },
|
|
7973
7985
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7167,6 +7167,8 @@ export interface core_flow_setting_bool_exp {
|
|
|
7167
7167
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
7168
7168
|
listing?: InputMaybe<listing_bool_exp>;
|
|
7169
7169
|
listing_id?: InputMaybe<uuid_comparison_exp>;
|
|
7170
|
+
rate?: InputMaybe<rate_bool_exp>;
|
|
7171
|
+
rateId?: InputMaybe<uuid_comparison_exp>;
|
|
7170
7172
|
setting_key?: InputMaybe<String_comparison_exp>;
|
|
7171
7173
|
tenant?: InputMaybe<tenant_bool_exp>;
|
|
7172
7174
|
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -7212,6 +7214,8 @@ export interface core_flow_setting_insert_input {
|
|
|
7212
7214
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7213
7215
|
listing?: InputMaybe<listing_obj_rel_insert_input>;
|
|
7214
7216
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7217
|
+
rate?: InputMaybe<rate_obj_rel_insert_input>;
|
|
7218
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7215
7219
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7216
7220
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
7217
7221
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -7242,6 +7246,8 @@ export interface core_flow_setting_order_by {
|
|
|
7242
7246
|
id?: InputMaybe<order_by>;
|
|
7243
7247
|
listing?: InputMaybe<listing_order_by>;
|
|
7244
7248
|
listing_id?: InputMaybe<order_by>;
|
|
7249
|
+
rate?: InputMaybe<rate_order_by>;
|
|
7250
|
+
rateId?: InputMaybe<order_by>;
|
|
7245
7251
|
setting_key?: InputMaybe<order_by>;
|
|
7246
7252
|
tenant?: InputMaybe<tenant_order_by>;
|
|
7247
7253
|
tenantId?: InputMaybe<order_by>;
|
|
@@ -7278,6 +7284,8 @@ export type core_flow_setting_select_column =
|
|
|
7278
7284
|
/** column name */
|
|
7279
7285
|
| "listing_id"
|
|
7280
7286
|
/** column name */
|
|
7287
|
+
| "rateId"
|
|
7288
|
+
/** column name */
|
|
7281
7289
|
| "setting_key"
|
|
7282
7290
|
/** column name */
|
|
7283
7291
|
| "tenantId"
|
|
@@ -7296,6 +7304,7 @@ export interface core_flow_setting_set_input {
|
|
|
7296
7304
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7297
7305
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7298
7306
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7307
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7299
7308
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7300
7309
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7301
7310
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -7320,6 +7329,7 @@ export interface core_flow_setting_stream_cursor_value_input {
|
|
|
7320
7329
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7321
7330
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7322
7331
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7332
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7323
7333
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7324
7334
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7325
7335
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -7345,6 +7355,8 @@ export type core_flow_setting_update_column =
|
|
|
7345
7355
|
/** column name */
|
|
7346
7356
|
| "listing_id"
|
|
7347
7357
|
/** column name */
|
|
7358
|
+
| "rateId"
|
|
7359
|
+
/** column name */
|
|
7348
7360
|
| "setting_key"
|
|
7349
7361
|
/** column name */
|
|
7350
7362
|
| "tenantId"
|
|
@@ -35931,6 +35943,8 @@ export declare const generatedSchema: {
|
|
|
35931
35943
|
id: { __type: "uuid!" };
|
|
35932
35944
|
listing: { __type: "listing" };
|
|
35933
35945
|
listing_id: { __type: "uuid" };
|
|
35946
|
+
rate: { __type: "rate" };
|
|
35947
|
+
rateId: { __type: "uuid" };
|
|
35934
35948
|
setting_key: { __type: "String!" };
|
|
35935
35949
|
tenant: { __type: "tenant!" };
|
|
35936
35950
|
tenantId: { __type: "uuid!" };
|
|
@@ -35973,6 +35987,8 @@ export declare const generatedSchema: {
|
|
|
35973
35987
|
id: { __type: "uuid_comparison_exp" };
|
|
35974
35988
|
listing: { __type: "listing_bool_exp" };
|
|
35975
35989
|
listing_id: { __type: "uuid_comparison_exp" };
|
|
35990
|
+
rate: { __type: "rate_bool_exp" };
|
|
35991
|
+
rateId: { __type: "uuid_comparison_exp" };
|
|
35976
35992
|
setting_key: { __type: "String_comparison_exp" };
|
|
35977
35993
|
tenant: { __type: "tenant_bool_exp" };
|
|
35978
35994
|
tenantId: { __type: "uuid_comparison_exp" };
|
|
@@ -35997,6 +36013,8 @@ export declare const generatedSchema: {
|
|
|
35997
36013
|
id: { __type: "uuid" };
|
|
35998
36014
|
listing: { __type: "listing_obj_rel_insert_input" };
|
|
35999
36015
|
listing_id: { __type: "uuid" };
|
|
36016
|
+
rate: { __type: "rate_obj_rel_insert_input" };
|
|
36017
|
+
rateId: { __type: "uuid" };
|
|
36000
36018
|
setting_key: { __type: "String" };
|
|
36001
36019
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
36002
36020
|
tenantId: { __type: "uuid" };
|
|
@@ -36013,6 +36031,7 @@ export declare const generatedSchema: {
|
|
|
36013
36031
|
flow_id: { __type: "uuid" };
|
|
36014
36032
|
id: { __type: "uuid" };
|
|
36015
36033
|
listing_id: { __type: "uuid" };
|
|
36034
|
+
rateId: { __type: "uuid" };
|
|
36016
36035
|
setting_key: { __type: "String" };
|
|
36017
36036
|
tenantId: { __type: "uuid" };
|
|
36018
36037
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36027,6 +36046,7 @@ export declare const generatedSchema: {
|
|
|
36027
36046
|
flow_id: { __type: "uuid" };
|
|
36028
36047
|
id: { __type: "uuid" };
|
|
36029
36048
|
listing_id: { __type: "uuid" };
|
|
36049
|
+
rateId: { __type: "uuid" };
|
|
36030
36050
|
setting_key: { __type: "String" };
|
|
36031
36051
|
tenantId: { __type: "uuid" };
|
|
36032
36052
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36056,6 +36076,8 @@ export declare const generatedSchema: {
|
|
|
36056
36076
|
id: { __type: "order_by" };
|
|
36057
36077
|
listing: { __type: "listing_order_by" };
|
|
36058
36078
|
listing_id: { __type: "order_by" };
|
|
36079
|
+
rate: { __type: "rate_order_by" };
|
|
36080
|
+
rateId: { __type: "order_by" };
|
|
36059
36081
|
setting_key: { __type: "order_by" };
|
|
36060
36082
|
tenant: { __type: "tenant_order_by" };
|
|
36061
36083
|
tenantId: { __type: "order_by" };
|
|
@@ -36073,6 +36095,7 @@ export declare const generatedSchema: {
|
|
|
36073
36095
|
flow_id: { __type: "uuid" };
|
|
36074
36096
|
id: { __type: "uuid" };
|
|
36075
36097
|
listing_id: { __type: "uuid" };
|
|
36098
|
+
rateId: { __type: "uuid" };
|
|
36076
36099
|
setting_key: { __type: "String" };
|
|
36077
36100
|
tenantId: { __type: "uuid" };
|
|
36078
36101
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36091,6 +36114,7 @@ export declare const generatedSchema: {
|
|
|
36091
36114
|
flow_id: { __type: "uuid" };
|
|
36092
36115
|
id: { __type: "uuid" };
|
|
36093
36116
|
listing_id: { __type: "uuid" };
|
|
36117
|
+
rateId: { __type: "uuid" };
|
|
36094
36118
|
setting_key: { __type: "String" };
|
|
36095
36119
|
tenantId: { __type: "uuid" };
|
|
36096
36120
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -77371,6 +77395,11 @@ export interface core_flow_setting {
|
|
|
77371
77395
|
*/
|
|
77372
77396
|
listing?: Maybe<listing>;
|
|
77373
77397
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77398
|
+
/**
|
|
77399
|
+
* An object relationship
|
|
77400
|
+
*/
|
|
77401
|
+
rate?: Maybe<rate>;
|
|
77402
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77374
77403
|
setting_key: ScalarsEnums["String"];
|
|
77375
77404
|
/**
|
|
77376
77405
|
* An object relationship
|
|
@@ -77421,6 +77450,7 @@ export interface core_flow_setting_max_fields {
|
|
|
77421
77450
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77422
77451
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77423
77452
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77453
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77424
77454
|
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77425
77455
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77426
77456
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -77439,6 +77469,7 @@ export interface core_flow_setting_min_fields {
|
|
|
77439
77469
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77440
77470
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77441
77471
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77472
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77442
77473
|
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77443
77474
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77444
77475
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -7805,6 +7805,8 @@ export const generatedSchema = {
|
|
|
7805
7805
|
id: { __type: "uuid!" },
|
|
7806
7806
|
listing: { __type: "listing" },
|
|
7807
7807
|
listing_id: { __type: "uuid" },
|
|
7808
|
+
rate: { __type: "rate" },
|
|
7809
|
+
rateId: { __type: "uuid" },
|
|
7808
7810
|
setting_key: { __type: "String!" },
|
|
7809
7811
|
tenant: { __type: "tenant!" },
|
|
7810
7812
|
tenantId: { __type: "uuid!" },
|
|
@@ -7847,6 +7849,8 @@ export const generatedSchema = {
|
|
|
7847
7849
|
id: { __type: "uuid_comparison_exp" },
|
|
7848
7850
|
listing: { __type: "listing_bool_exp" },
|
|
7849
7851
|
listing_id: { __type: "uuid_comparison_exp" },
|
|
7852
|
+
rate: { __type: "rate_bool_exp" },
|
|
7853
|
+
rateId: { __type: "uuid_comparison_exp" },
|
|
7850
7854
|
setting_key: { __type: "String_comparison_exp" },
|
|
7851
7855
|
tenant: { __type: "tenant_bool_exp" },
|
|
7852
7856
|
tenantId: { __type: "uuid_comparison_exp" },
|
|
@@ -7871,6 +7875,8 @@ export const generatedSchema = {
|
|
|
7871
7875
|
id: { __type: "uuid" },
|
|
7872
7876
|
listing: { __type: "listing_obj_rel_insert_input" },
|
|
7873
7877
|
listing_id: { __type: "uuid" },
|
|
7878
|
+
rate: { __type: "rate_obj_rel_insert_input" },
|
|
7879
|
+
rateId: { __type: "uuid" },
|
|
7874
7880
|
setting_key: { __type: "String" },
|
|
7875
7881
|
tenant: { __type: "tenant_obj_rel_insert_input" },
|
|
7876
7882
|
tenantId: { __type: "uuid" },
|
|
@@ -7887,6 +7893,7 @@ export const generatedSchema = {
|
|
|
7887
7893
|
flow_id: { __type: "uuid" },
|
|
7888
7894
|
id: { __type: "uuid" },
|
|
7889
7895
|
listing_id: { __type: "uuid" },
|
|
7896
|
+
rateId: { __type: "uuid" },
|
|
7890
7897
|
setting_key: { __type: "String" },
|
|
7891
7898
|
tenantId: { __type: "uuid" },
|
|
7892
7899
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7901,6 +7908,7 @@ export const generatedSchema = {
|
|
|
7901
7908
|
flow_id: { __type: "uuid" },
|
|
7902
7909
|
id: { __type: "uuid" },
|
|
7903
7910
|
listing_id: { __type: "uuid" },
|
|
7911
|
+
rateId: { __type: "uuid" },
|
|
7904
7912
|
setting_key: { __type: "String" },
|
|
7905
7913
|
tenantId: { __type: "uuid" },
|
|
7906
7914
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7930,6 +7938,8 @@ export const generatedSchema = {
|
|
|
7930
7938
|
id: { __type: "order_by" },
|
|
7931
7939
|
listing: { __type: "listing_order_by" },
|
|
7932
7940
|
listing_id: { __type: "order_by" },
|
|
7941
|
+
rate: { __type: "rate_order_by" },
|
|
7942
|
+
rateId: { __type: "order_by" },
|
|
7933
7943
|
setting_key: { __type: "order_by" },
|
|
7934
7944
|
tenant: { __type: "tenant_order_by" },
|
|
7935
7945
|
tenantId: { __type: "order_by" },
|
|
@@ -7947,6 +7957,7 @@ export const generatedSchema = {
|
|
|
7947
7957
|
flow_id: { __type: "uuid" },
|
|
7948
7958
|
id: { __type: "uuid" },
|
|
7949
7959
|
listing_id: { __type: "uuid" },
|
|
7960
|
+
rateId: { __type: "uuid" },
|
|
7950
7961
|
setting_key: { __type: "String" },
|
|
7951
7962
|
tenantId: { __type: "uuid" },
|
|
7952
7963
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7965,6 +7976,7 @@ export const generatedSchema = {
|
|
|
7965
7976
|
flow_id: { __type: "uuid" },
|
|
7966
7977
|
id: { __type: "uuid" },
|
|
7967
7978
|
listing_id: { __type: "uuid" },
|
|
7979
|
+
rateId: { __type: "uuid" },
|
|
7968
7980
|
setting_key: { __type: "String" },
|
|
7969
7981
|
tenantId: { __type: "uuid" },
|
|
7970
7982
|
updatedAt: { __type: "timestamptz" },
|
package/package.json
CHANGED
|
@@ -7167,6 +7167,8 @@ export interface core_flow_setting_bool_exp {
|
|
|
7167
7167
|
id?: InputMaybe<uuid_comparison_exp>;
|
|
7168
7168
|
listing?: InputMaybe<listing_bool_exp>;
|
|
7169
7169
|
listing_id?: InputMaybe<uuid_comparison_exp>;
|
|
7170
|
+
rate?: InputMaybe<rate_bool_exp>;
|
|
7171
|
+
rateId?: InputMaybe<uuid_comparison_exp>;
|
|
7170
7172
|
setting_key?: InputMaybe<String_comparison_exp>;
|
|
7171
7173
|
tenant?: InputMaybe<tenant_bool_exp>;
|
|
7172
7174
|
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
@@ -7212,6 +7214,8 @@ export interface core_flow_setting_insert_input {
|
|
|
7212
7214
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7213
7215
|
listing?: InputMaybe<listing_obj_rel_insert_input>;
|
|
7214
7216
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7217
|
+
rate?: InputMaybe<rate_obj_rel_insert_input>;
|
|
7218
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7215
7219
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7216
7220
|
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
7217
7221
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
@@ -7242,6 +7246,8 @@ export interface core_flow_setting_order_by {
|
|
|
7242
7246
|
id?: InputMaybe<order_by>;
|
|
7243
7247
|
listing?: InputMaybe<listing_order_by>;
|
|
7244
7248
|
listing_id?: InputMaybe<order_by>;
|
|
7249
|
+
rate?: InputMaybe<rate_order_by>;
|
|
7250
|
+
rateId?: InputMaybe<order_by>;
|
|
7245
7251
|
setting_key?: InputMaybe<order_by>;
|
|
7246
7252
|
tenant?: InputMaybe<tenant_order_by>;
|
|
7247
7253
|
tenantId?: InputMaybe<order_by>;
|
|
@@ -7278,6 +7284,8 @@ export type core_flow_setting_select_column =
|
|
|
7278
7284
|
/** column name */
|
|
7279
7285
|
| "listing_id"
|
|
7280
7286
|
/** column name */
|
|
7287
|
+
| "rateId"
|
|
7288
|
+
/** column name */
|
|
7281
7289
|
| "setting_key"
|
|
7282
7290
|
/** column name */
|
|
7283
7291
|
| "tenantId"
|
|
@@ -7296,6 +7304,7 @@ export interface core_flow_setting_set_input {
|
|
|
7296
7304
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7297
7305
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7298
7306
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7307
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7299
7308
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7300
7309
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7301
7310
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -7320,6 +7329,7 @@ export interface core_flow_setting_stream_cursor_value_input {
|
|
|
7320
7329
|
flow_id?: InputMaybe<Scalars["uuid"]>;
|
|
7321
7330
|
id?: InputMaybe<Scalars["uuid"]>;
|
|
7322
7331
|
listing_id?: InputMaybe<Scalars["uuid"]>;
|
|
7332
|
+
rateId?: InputMaybe<Scalars["uuid"]>;
|
|
7323
7333
|
setting_key?: InputMaybe<Scalars["String"]>;
|
|
7324
7334
|
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7325
7335
|
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
@@ -7345,6 +7355,8 @@ export type core_flow_setting_update_column =
|
|
|
7345
7355
|
/** column name */
|
|
7346
7356
|
| "listing_id"
|
|
7347
7357
|
/** column name */
|
|
7358
|
+
| "rateId"
|
|
7359
|
+
/** column name */
|
|
7348
7360
|
| "setting_key"
|
|
7349
7361
|
/** column name */
|
|
7350
7362
|
| "tenantId"
|
|
@@ -35931,6 +35943,8 @@ export declare const generatedSchema: {
|
|
|
35931
35943
|
id: { __type: "uuid!" };
|
|
35932
35944
|
listing: { __type: "listing" };
|
|
35933
35945
|
listing_id: { __type: "uuid" };
|
|
35946
|
+
rate: { __type: "rate" };
|
|
35947
|
+
rateId: { __type: "uuid" };
|
|
35934
35948
|
setting_key: { __type: "String!" };
|
|
35935
35949
|
tenant: { __type: "tenant!" };
|
|
35936
35950
|
tenantId: { __type: "uuid!" };
|
|
@@ -35973,6 +35987,8 @@ export declare const generatedSchema: {
|
|
|
35973
35987
|
id: { __type: "uuid_comparison_exp" };
|
|
35974
35988
|
listing: { __type: "listing_bool_exp" };
|
|
35975
35989
|
listing_id: { __type: "uuid_comparison_exp" };
|
|
35990
|
+
rate: { __type: "rate_bool_exp" };
|
|
35991
|
+
rateId: { __type: "uuid_comparison_exp" };
|
|
35976
35992
|
setting_key: { __type: "String_comparison_exp" };
|
|
35977
35993
|
tenant: { __type: "tenant_bool_exp" };
|
|
35978
35994
|
tenantId: { __type: "uuid_comparison_exp" };
|
|
@@ -35997,6 +36013,8 @@ export declare const generatedSchema: {
|
|
|
35997
36013
|
id: { __type: "uuid" };
|
|
35998
36014
|
listing: { __type: "listing_obj_rel_insert_input" };
|
|
35999
36015
|
listing_id: { __type: "uuid" };
|
|
36016
|
+
rate: { __type: "rate_obj_rel_insert_input" };
|
|
36017
|
+
rateId: { __type: "uuid" };
|
|
36000
36018
|
setting_key: { __type: "String" };
|
|
36001
36019
|
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
36002
36020
|
tenantId: { __type: "uuid" };
|
|
@@ -36013,6 +36031,7 @@ export declare const generatedSchema: {
|
|
|
36013
36031
|
flow_id: { __type: "uuid" };
|
|
36014
36032
|
id: { __type: "uuid" };
|
|
36015
36033
|
listing_id: { __type: "uuid" };
|
|
36034
|
+
rateId: { __type: "uuid" };
|
|
36016
36035
|
setting_key: { __type: "String" };
|
|
36017
36036
|
tenantId: { __type: "uuid" };
|
|
36018
36037
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36027,6 +36046,7 @@ export declare const generatedSchema: {
|
|
|
36027
36046
|
flow_id: { __type: "uuid" };
|
|
36028
36047
|
id: { __type: "uuid" };
|
|
36029
36048
|
listing_id: { __type: "uuid" };
|
|
36049
|
+
rateId: { __type: "uuid" };
|
|
36030
36050
|
setting_key: { __type: "String" };
|
|
36031
36051
|
tenantId: { __type: "uuid" };
|
|
36032
36052
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36056,6 +36076,8 @@ export declare const generatedSchema: {
|
|
|
36056
36076
|
id: { __type: "order_by" };
|
|
36057
36077
|
listing: { __type: "listing_order_by" };
|
|
36058
36078
|
listing_id: { __type: "order_by" };
|
|
36079
|
+
rate: { __type: "rate_order_by" };
|
|
36080
|
+
rateId: { __type: "order_by" };
|
|
36059
36081
|
setting_key: { __type: "order_by" };
|
|
36060
36082
|
tenant: { __type: "tenant_order_by" };
|
|
36061
36083
|
tenantId: { __type: "order_by" };
|
|
@@ -36073,6 +36095,7 @@ export declare const generatedSchema: {
|
|
|
36073
36095
|
flow_id: { __type: "uuid" };
|
|
36074
36096
|
id: { __type: "uuid" };
|
|
36075
36097
|
listing_id: { __type: "uuid" };
|
|
36098
|
+
rateId: { __type: "uuid" };
|
|
36076
36099
|
setting_key: { __type: "String" };
|
|
36077
36100
|
tenantId: { __type: "uuid" };
|
|
36078
36101
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -36091,6 +36114,7 @@ export declare const generatedSchema: {
|
|
|
36091
36114
|
flow_id: { __type: "uuid" };
|
|
36092
36115
|
id: { __type: "uuid" };
|
|
36093
36116
|
listing_id: { __type: "uuid" };
|
|
36117
|
+
rateId: { __type: "uuid" };
|
|
36094
36118
|
setting_key: { __type: "String" };
|
|
36095
36119
|
tenantId: { __type: "uuid" };
|
|
36096
36120
|
updatedAt: { __type: "timestamptz" };
|
|
@@ -77371,6 +77395,11 @@ export interface core_flow_setting {
|
|
|
77371
77395
|
*/
|
|
77372
77396
|
listing?: Maybe<listing>;
|
|
77373
77397
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77398
|
+
/**
|
|
77399
|
+
* An object relationship
|
|
77400
|
+
*/
|
|
77401
|
+
rate?: Maybe<rate>;
|
|
77402
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77374
77403
|
setting_key: ScalarsEnums["String"];
|
|
77375
77404
|
/**
|
|
77376
77405
|
* An object relationship
|
|
@@ -77421,6 +77450,7 @@ export interface core_flow_setting_max_fields {
|
|
|
77421
77450
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77422
77451
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77423
77452
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77453
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77424
77454
|
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77425
77455
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77426
77456
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -77439,6 +77469,7 @@ export interface core_flow_setting_min_fields {
|
|
|
77439
77469
|
flow_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77440
77470
|
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77441
77471
|
listing_id?: Maybe<ScalarsEnums["uuid"]>;
|
|
77472
|
+
rateId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77442
77473
|
setting_key?: Maybe<ScalarsEnums["String"]>;
|
|
77443
77474
|
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
77444
77475
|
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
@@ -7831,6 +7831,8 @@ export const generatedSchema = {
|
|
|
7831
7831
|
id: { __type: "uuid!" },
|
|
7832
7832
|
listing: { __type: "listing" },
|
|
7833
7833
|
listing_id: { __type: "uuid" },
|
|
7834
|
+
rate: { __type: "rate" },
|
|
7835
|
+
rateId: { __type: "uuid" },
|
|
7834
7836
|
setting_key: { __type: "String!" },
|
|
7835
7837
|
tenant: { __type: "tenant!" },
|
|
7836
7838
|
tenantId: { __type: "uuid!" },
|
|
@@ -7873,6 +7875,8 @@ export const generatedSchema = {
|
|
|
7873
7875
|
id: { __type: "uuid_comparison_exp" },
|
|
7874
7876
|
listing: { __type: "listing_bool_exp" },
|
|
7875
7877
|
listing_id: { __type: "uuid_comparison_exp" },
|
|
7878
|
+
rate: { __type: "rate_bool_exp" },
|
|
7879
|
+
rateId: { __type: "uuid_comparison_exp" },
|
|
7876
7880
|
setting_key: { __type: "String_comparison_exp" },
|
|
7877
7881
|
tenant: { __type: "tenant_bool_exp" },
|
|
7878
7882
|
tenantId: { __type: "uuid_comparison_exp" },
|
|
@@ -7897,6 +7901,8 @@ export const generatedSchema = {
|
|
|
7897
7901
|
id: { __type: "uuid" },
|
|
7898
7902
|
listing: { __type: "listing_obj_rel_insert_input" },
|
|
7899
7903
|
listing_id: { __type: "uuid" },
|
|
7904
|
+
rate: { __type: "rate_obj_rel_insert_input" },
|
|
7905
|
+
rateId: { __type: "uuid" },
|
|
7900
7906
|
setting_key: { __type: "String" },
|
|
7901
7907
|
tenant: { __type: "tenant_obj_rel_insert_input" },
|
|
7902
7908
|
tenantId: { __type: "uuid" },
|
|
@@ -7913,6 +7919,7 @@ export const generatedSchema = {
|
|
|
7913
7919
|
flow_id: { __type: "uuid" },
|
|
7914
7920
|
id: { __type: "uuid" },
|
|
7915
7921
|
listing_id: { __type: "uuid" },
|
|
7922
|
+
rateId: { __type: "uuid" },
|
|
7916
7923
|
setting_key: { __type: "String" },
|
|
7917
7924
|
tenantId: { __type: "uuid" },
|
|
7918
7925
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7927,6 +7934,7 @@ export const generatedSchema = {
|
|
|
7927
7934
|
flow_id: { __type: "uuid" },
|
|
7928
7935
|
id: { __type: "uuid" },
|
|
7929
7936
|
listing_id: { __type: "uuid" },
|
|
7937
|
+
rateId: { __type: "uuid" },
|
|
7930
7938
|
setting_key: { __type: "String" },
|
|
7931
7939
|
tenantId: { __type: "uuid" },
|
|
7932
7940
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7956,6 +7964,8 @@ export const generatedSchema = {
|
|
|
7956
7964
|
id: { __type: "order_by" },
|
|
7957
7965
|
listing: { __type: "listing_order_by" },
|
|
7958
7966
|
listing_id: { __type: "order_by" },
|
|
7967
|
+
rate: { __type: "rate_order_by" },
|
|
7968
|
+
rateId: { __type: "order_by" },
|
|
7959
7969
|
setting_key: { __type: "order_by" },
|
|
7960
7970
|
tenant: { __type: "tenant_order_by" },
|
|
7961
7971
|
tenantId: { __type: "order_by" },
|
|
@@ -7973,6 +7983,7 @@ export const generatedSchema = {
|
|
|
7973
7983
|
flow_id: { __type: "uuid" },
|
|
7974
7984
|
id: { __type: "uuid" },
|
|
7975
7985
|
listing_id: { __type: "uuid" },
|
|
7986
|
+
rateId: { __type: "uuid" },
|
|
7976
7987
|
setting_key: { __type: "String" },
|
|
7977
7988
|
tenantId: { __type: "uuid" },
|
|
7978
7989
|
updatedAt: { __type: "timestamptz" },
|
|
@@ -7991,6 +8002,7 @@ export const generatedSchema = {
|
|
|
7991
8002
|
flow_id: { __type: "uuid" },
|
|
7992
8003
|
id: { __type: "uuid" },
|
|
7993
8004
|
listing_id: { __type: "uuid" },
|
|
8005
|
+
rateId: { __type: "uuid" },
|
|
7994
8006
|
setting_key: { __type: "String" },
|
|
7995
8007
|
tenantId: { __type: "uuid" },
|
|
7996
8008
|
updatedAt: { __type: "timestamptz" },
|