@promoboxx/graphql-gateway-types 1.151.0 → 1.153.0
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/graphql.schema.json +8 -8
- package/index.d.ts +8 -0
- package/package.json +1 -1
- package/schema.graphql +16 -0
package/graphql.schema.json
CHANGED
|
@@ -85462,7 +85462,7 @@
|
|
|
85462
85462
|
},
|
|
85463
85463
|
{
|
|
85464
85464
|
"name": "verified_address_id",
|
|
85465
|
-
"description":
|
|
85465
|
+
"description": "test",
|
|
85466
85466
|
"args": [],
|
|
85467
85467
|
"type": {
|
|
85468
85468
|
"kind": "NON_NULL",
|
|
@@ -86423,7 +86423,7 @@
|
|
|
86423
86423
|
},
|
|
86424
86424
|
{
|
|
86425
86425
|
"name": "verified_address_id",
|
|
86426
|
-
"description":
|
|
86426
|
+
"description": "test",
|
|
86427
86427
|
"type": {
|
|
86428
86428
|
"kind": "SCALAR",
|
|
86429
86429
|
"name": "uuid",
|
|
@@ -86517,7 +86517,7 @@
|
|
|
86517
86517
|
},
|
|
86518
86518
|
{
|
|
86519
86519
|
"name": "verified_address_id",
|
|
86520
|
-
"description":
|
|
86520
|
+
"description": "test",
|
|
86521
86521
|
"args": [],
|
|
86522
86522
|
"type": {
|
|
86523
86523
|
"kind": "SCALAR",
|
|
@@ -86613,7 +86613,7 @@
|
|
|
86613
86613
|
},
|
|
86614
86614
|
{
|
|
86615
86615
|
"name": "verified_address_id",
|
|
86616
|
-
"description":
|
|
86616
|
+
"description": "test",
|
|
86617
86617
|
"type": {
|
|
86618
86618
|
"kind": "ENUM",
|
|
86619
86619
|
"name": "order_by",
|
|
@@ -86707,7 +86707,7 @@
|
|
|
86707
86707
|
},
|
|
86708
86708
|
{
|
|
86709
86709
|
"name": "verified_address_id",
|
|
86710
|
-
"description":
|
|
86710
|
+
"description": "test",
|
|
86711
86711
|
"args": [],
|
|
86712
86712
|
"type": {
|
|
86713
86713
|
"kind": "SCALAR",
|
|
@@ -86803,7 +86803,7 @@
|
|
|
86803
86803
|
},
|
|
86804
86804
|
{
|
|
86805
86805
|
"name": "verified_address_id",
|
|
86806
|
-
"description":
|
|
86806
|
+
"description": "test",
|
|
86807
86807
|
"type": {
|
|
86808
86808
|
"kind": "ENUM",
|
|
86809
86809
|
"name": "order_by",
|
|
@@ -87370,7 +87370,7 @@
|
|
|
87370
87370
|
},
|
|
87371
87371
|
{
|
|
87372
87372
|
"name": "verified_address_id",
|
|
87373
|
-
"description":
|
|
87373
|
+
"description": "test",
|
|
87374
87374
|
"type": {
|
|
87375
87375
|
"kind": "SCALAR",
|
|
87376
87376
|
"name": "uuid",
|
|
@@ -87540,7 +87540,7 @@
|
|
|
87540
87540
|
},
|
|
87541
87541
|
{
|
|
87542
87542
|
"name": "verified_address_id",
|
|
87543
|
-
"description":
|
|
87543
|
+
"description": "test",
|
|
87544
87544
|
"type": {
|
|
87545
87545
|
"kind": "SCALAR",
|
|
87546
87546
|
"name": "uuid",
|
package/index.d.ts
CHANGED
|
@@ -10739,6 +10739,7 @@ export type Address_Verification_Run_Results = {
|
|
|
10739
10739
|
updated_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
10740
10740
|
/** An object relationship */
|
|
10741
10741
|
verified_address: Verified_Addresses;
|
|
10742
|
+
/** test */
|
|
10742
10743
|
verified_address_id: Scalars['uuid']['output'];
|
|
10743
10744
|
};
|
|
10744
10745
|
|
|
@@ -10868,6 +10869,7 @@ export type Address_Verification_Run_Results_Insert_Input = {
|
|
|
10868
10869
|
success?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10869
10870
|
updated_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
10870
10871
|
verified_address?: InputMaybe<Verified_Addresses_Obj_Rel_Insert_Input>;
|
|
10872
|
+
/** test */
|
|
10871
10873
|
verified_address_id?: InputMaybe<Scalars['uuid']['input']>;
|
|
10872
10874
|
};
|
|
10873
10875
|
|
|
@@ -10880,6 +10882,7 @@ export type Address_Verification_Run_Results_Max_Fields = {
|
|
|
10880
10882
|
fail_reason?: Maybe<Scalars['String']['output']>;
|
|
10881
10883
|
id?: Maybe<Scalars['uuid']['output']>;
|
|
10882
10884
|
updated_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
10885
|
+
/** test */
|
|
10883
10886
|
verified_address_id?: Maybe<Scalars['uuid']['output']>;
|
|
10884
10887
|
};
|
|
10885
10888
|
|
|
@@ -10891,6 +10894,7 @@ export type Address_Verification_Run_Results_Max_Order_By = {
|
|
|
10891
10894
|
fail_reason?: InputMaybe<Order_By>;
|
|
10892
10895
|
id?: InputMaybe<Order_By>;
|
|
10893
10896
|
updated_at?: InputMaybe<Order_By>;
|
|
10897
|
+
/** test */
|
|
10894
10898
|
verified_address_id?: InputMaybe<Order_By>;
|
|
10895
10899
|
};
|
|
10896
10900
|
|
|
@@ -10903,6 +10907,7 @@ export type Address_Verification_Run_Results_Min_Fields = {
|
|
|
10903
10907
|
fail_reason?: Maybe<Scalars['String']['output']>;
|
|
10904
10908
|
id?: Maybe<Scalars['uuid']['output']>;
|
|
10905
10909
|
updated_at?: Maybe<Scalars['timestamptz']['output']>;
|
|
10910
|
+
/** test */
|
|
10906
10911
|
verified_address_id?: Maybe<Scalars['uuid']['output']>;
|
|
10907
10912
|
};
|
|
10908
10913
|
|
|
@@ -10914,6 +10919,7 @@ export type Address_Verification_Run_Results_Min_Order_By = {
|
|
|
10914
10919
|
fail_reason?: InputMaybe<Order_By>;
|
|
10915
10920
|
id?: InputMaybe<Order_By>;
|
|
10916
10921
|
updated_at?: InputMaybe<Order_By>;
|
|
10922
|
+
/** test */
|
|
10917
10923
|
verified_address_id?: InputMaybe<Order_By>;
|
|
10918
10924
|
};
|
|
10919
10925
|
|
|
@@ -11007,6 +11013,7 @@ export type Address_Verification_Run_Results_Set_Input = {
|
|
|
11007
11013
|
input_data?: InputMaybe<Scalars['jsonb']['input']>;
|
|
11008
11014
|
success?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11009
11015
|
updated_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
11016
|
+
/** test */
|
|
11010
11017
|
verified_address_id?: InputMaybe<Scalars['uuid']['input']>;
|
|
11011
11018
|
};
|
|
11012
11019
|
|
|
@@ -11029,6 +11036,7 @@ export type Address_Verification_Run_Results_Stream_Cursor_Value_Input = {
|
|
|
11029
11036
|
input_data?: InputMaybe<Scalars['jsonb']['input']>;
|
|
11030
11037
|
success?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11031
11038
|
updated_at?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
11039
|
+
/** test */
|
|
11032
11040
|
verified_address_id?: InputMaybe<Scalars['uuid']['input']>;
|
|
11033
11041
|
};
|
|
11034
11042
|
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -9651,6 +9651,8 @@ type address_verification_run_results {
|
|
|
9651
9651
|
|
|
9652
9652
|
"""An object relationship"""
|
|
9653
9653
|
verified_address: verified_addresses!
|
|
9654
|
+
|
|
9655
|
+
"""test"""
|
|
9654
9656
|
verified_address_id: uuid!
|
|
9655
9657
|
}
|
|
9656
9658
|
|
|
@@ -9789,6 +9791,8 @@ input address_verification_run_results_insert_input {
|
|
|
9789
9791
|
success: Boolean
|
|
9790
9792
|
updated_at: timestamptz
|
|
9791
9793
|
verified_address: verified_addresses_obj_rel_insert_input
|
|
9794
|
+
|
|
9795
|
+
"""test"""
|
|
9792
9796
|
verified_address_id: uuid
|
|
9793
9797
|
}
|
|
9794
9798
|
|
|
@@ -9800,6 +9804,8 @@ type address_verification_run_results_max_fields {
|
|
|
9800
9804
|
fail_reason: String
|
|
9801
9805
|
id: uuid
|
|
9802
9806
|
updated_at: timestamptz
|
|
9807
|
+
|
|
9808
|
+
"""test"""
|
|
9803
9809
|
verified_address_id: uuid
|
|
9804
9810
|
}
|
|
9805
9811
|
|
|
@@ -9813,6 +9819,8 @@ input address_verification_run_results_max_order_by {
|
|
|
9813
9819
|
fail_reason: order_by
|
|
9814
9820
|
id: order_by
|
|
9815
9821
|
updated_at: order_by
|
|
9822
|
+
|
|
9823
|
+
"""test"""
|
|
9816
9824
|
verified_address_id: order_by
|
|
9817
9825
|
}
|
|
9818
9826
|
|
|
@@ -9824,6 +9832,8 @@ type address_verification_run_results_min_fields {
|
|
|
9824
9832
|
fail_reason: String
|
|
9825
9833
|
id: uuid
|
|
9826
9834
|
updated_at: timestamptz
|
|
9835
|
+
|
|
9836
|
+
"""test"""
|
|
9827
9837
|
verified_address_id: uuid
|
|
9828
9838
|
}
|
|
9829
9839
|
|
|
@@ -9837,6 +9847,8 @@ input address_verification_run_results_min_order_by {
|
|
|
9837
9847
|
fail_reason: order_by
|
|
9838
9848
|
id: order_by
|
|
9839
9849
|
updated_at: order_by
|
|
9850
|
+
|
|
9851
|
+
"""test"""
|
|
9840
9852
|
verified_address_id: order_by
|
|
9841
9853
|
}
|
|
9842
9854
|
|
|
@@ -9958,6 +9970,8 @@ input address_verification_run_results_set_input {
|
|
|
9958
9970
|
input_data: jsonb
|
|
9959
9971
|
success: Boolean
|
|
9960
9972
|
updated_at: timestamptz
|
|
9973
|
+
|
|
9974
|
+
"""test"""
|
|
9961
9975
|
verified_address_id: uuid
|
|
9962
9976
|
}
|
|
9963
9977
|
|
|
@@ -9983,6 +9997,8 @@ input address_verification_run_results_stream_cursor_value_input {
|
|
|
9983
9997
|
input_data: jsonb
|
|
9984
9998
|
success: Boolean
|
|
9985
9999
|
updated_at: timestamptz
|
|
10000
|
+
|
|
10001
|
+
"""test"""
|
|
9986
10002
|
verified_address_id: uuid
|
|
9987
10003
|
}
|
|
9988
10004
|
|