@promoboxx/graphql-gateway-types 1.78.0 → 1.79.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 +24 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -18935,6 +18935,30 @@
|
|
|
18935
18935
|
"defaultValue": null,
|
|
18936
18936
|
"isDeprecated": false,
|
|
18937
18937
|
"deprecationReason": null
|
|
18938
|
+
},
|
|
18939
|
+
{
|
|
18940
|
+
"name": "user_email",
|
|
18941
|
+
"description": null,
|
|
18942
|
+
"type": {
|
|
18943
|
+
"kind": "SCALAR",
|
|
18944
|
+
"name": "String",
|
|
18945
|
+
"ofType": null
|
|
18946
|
+
},
|
|
18947
|
+
"defaultValue": null,
|
|
18948
|
+
"isDeprecated": false,
|
|
18949
|
+
"deprecationReason": null
|
|
18950
|
+
},
|
|
18951
|
+
{
|
|
18952
|
+
"name": "user_id",
|
|
18953
|
+
"description": null,
|
|
18954
|
+
"type": {
|
|
18955
|
+
"kind": "SCALAR",
|
|
18956
|
+
"name": "Int",
|
|
18957
|
+
"ofType": null
|
|
18958
|
+
},
|
|
18959
|
+
"defaultValue": null,
|
|
18960
|
+
"isDeprecated": false,
|
|
18961
|
+
"deprecationReason": null
|
|
18938
18962
|
}
|
|
18939
18963
|
],
|
|
18940
18964
|
"interfaces": null,
|
package/index.d.ts
CHANGED
|
@@ -2033,6 +2033,8 @@ export type CreateStripePaymentIntentInput = {
|
|
|
2033
2033
|
payment_type: Scalars['String']['input'];
|
|
2034
2034
|
type: Scalars['String']['input'];
|
|
2035
2035
|
type_id: Scalars['ID']['input'];
|
|
2036
|
+
user_email?: InputMaybe<Scalars['String']['input']>;
|
|
2037
|
+
user_id?: InputMaybe<Scalars['Int']['input']>;
|
|
2036
2038
|
};
|
|
2037
2039
|
|
|
2038
2040
|
export type CreateSupportEmailRequest = {
|
package/package.json
CHANGED