@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.78.0",
3
+ "version": "1.79.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1957,6 +1957,8 @@ input CreateStripePaymentIntentInput {
1957
1957
  payment_type: String!
1958
1958
  type: String!
1959
1959
  type_id: ID!
1960
+ user_email: String
1961
+ user_id: Int
1960
1962
  }
1961
1963
 
1962
1964
  input CreateSupportEmailRequest {