@promoboxx/graphql-gateway-types 1.35.0 → 1.37.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.
@@ -49876,7 +49876,7 @@
49876
49876
  "description": "Gets the specific stripe payment intent with the given ID",
49877
49877
  "args": [
49878
49878
  {
49879
- "name": "id",
49879
+ "name": "typeId",
49880
49880
  "description": null,
49881
49881
  "type": {
49882
49882
  "kind": "NON_NULL",
package/index.d.ts CHANGED
@@ -6086,7 +6086,7 @@ export type QueryGetStripePaymentIntentByIdArgs = {
6086
6086
 
6087
6087
 
6088
6088
  export type QueryGetStripePaymentIntentsArgs = {
6089
- id: Scalars['ID']['input'];
6089
+ typeId: Scalars['ID']['input'];
6090
6090
  walletType: Scalars['String']['input'];
6091
6091
  };
6092
6092
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.35.0",
3
+ "version": "1.37.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -4563,7 +4563,7 @@ type Query {
4563
4563
  getStripePaymentIntentByID(id: ID!): StripePaymentIntent!
4564
4564
 
4565
4565
  """Gets the specific stripe payment intent with the given ID"""
4566
- getStripePaymentIntents(id: ID!, walletType: String!): [StripePaymentIntent!]
4566
+ getStripePaymentIntents(typeId: ID!, walletType: String!): [StripePaymentIntent!]
4567
4567
  getSupportedLocales: [String!]
4568
4568
  getTwitterAccount(id: ID!, params: TwitterAccountParams): TwitterAccount!
4569
4569
  getTwitterAccounts(params: TwitterAccountParams, resourceId: ID!, resourceType: String!): [TwitterAccount!]!