@promoboxx/graphql-gateway-types 1.37.0 → 1.39.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.
@@ -57532,7 +57532,7 @@
57532
57532
  "deprecationReason": null
57533
57533
  },
57534
57534
  {
57535
- "name": "payment_intent_object",
57535
+ "name": "status",
57536
57536
  "description": null,
57537
57537
  "args": [],
57538
57538
  "type": {
@@ -57548,7 +57548,7 @@
57548
57548
  "deprecationReason": null
57549
57549
  },
57550
57550
  {
57551
- "name": "status",
57551
+ "name": "stripe_status",
57552
57552
  "description": null,
57553
57553
  "args": [],
57554
57554
  "type": {
@@ -61927,71 +61927,7 @@
61927
61927
  "fields": null,
61928
61928
  "inputFields": [
61929
61929
  {
61930
- "name": "id",
61931
- "description": null,
61932
- "type": {
61933
- "kind": "NON_NULL",
61934
- "name": null,
61935
- "ofType": {
61936
- "kind": "SCALAR",
61937
- "name": "ID",
61938
- "ofType": null
61939
- }
61940
- },
61941
- "defaultValue": null,
61942
- "isDeprecated": false,
61943
- "deprecationReason": null
61944
- },
61945
- {
61946
- "name": "payment_intent_id",
61947
- "description": null,
61948
- "type": {
61949
- "kind": "NON_NULL",
61950
- "name": null,
61951
- "ofType": {
61952
- "kind": "SCALAR",
61953
- "name": "String",
61954
- "ofType": null
61955
- }
61956
- },
61957
- "defaultValue": null,
61958
- "isDeprecated": false,
61959
- "deprecationReason": null
61960
- },
61961
- {
61962
- "name": "payment_intent_object",
61963
- "description": null,
61964
- "type": {
61965
- "kind": "NON_NULL",
61966
- "name": null,
61967
- "ofType": {
61968
- "kind": "SCALAR",
61969
- "name": "String",
61970
- "ofType": null
61971
- }
61972
- },
61973
- "defaultValue": null,
61974
- "isDeprecated": false,
61975
- "deprecationReason": null
61976
- },
61977
- {
61978
- "name": "status",
61979
- "description": null,
61980
- "type": {
61981
- "kind": "NON_NULL",
61982
- "name": null,
61983
- "ofType": {
61984
- "kind": "SCALAR",
61985
- "name": "String",
61986
- "ofType": null
61987
- }
61988
- },
61989
- "defaultValue": null,
61990
- "isDeprecated": false,
61991
- "deprecationReason": null
61992
- },
61993
- {
61994
- "name": "type_id",
61930
+ "name": "amount_cents",
61995
61931
  "description": null,
61996
61932
  "type": {
61997
61933
  "kind": "NON_NULL",
@@ -62007,14 +61943,14 @@
62007
61943
  "deprecationReason": null
62008
61944
  },
62009
61945
  {
62010
- "name": "wallet_type",
61946
+ "name": "id",
62011
61947
  "description": null,
62012
61948
  "type": {
62013
61949
  "kind": "NON_NULL",
62014
61950
  "name": null,
62015
61951
  "ofType": {
62016
61952
  "kind": "SCALAR",
62017
- "name": "String",
61953
+ "name": "ID",
62018
61954
  "ofType": null
62019
61955
  }
62020
61956
  },
package/index.d.ts CHANGED
@@ -6922,8 +6922,8 @@ export type StripePaymentIntent = {
6922
6922
  created_at: Scalars['String']['output'];
6923
6923
  id: Scalars['ID']['output'];
6924
6924
  payment_intent_id: Scalars['String']['output'];
6925
- payment_intent_object: Scalars['String']['output'];
6926
6925
  status: Scalars['String']['output'];
6926
+ stripe_status: Scalars['String']['output'];
6927
6927
  type_id: Scalars['String']['output'];
6928
6928
  updatedAt: Scalars['String']['output'];
6929
6929
  wallet_type: Scalars['String']['output'];
@@ -7394,12 +7394,8 @@ export type UpdatePaidAdParams = {
7394
7394
  };
7395
7395
 
7396
7396
  export type UpdateStripePaymentIntent = {
7397
+ amount_cents: Scalars['String']['input'];
7397
7398
  id: Scalars['ID']['input'];
7398
- payment_intent_id: Scalars['String']['input'];
7399
- payment_intent_object: Scalars['String']['input'];
7400
- status: Scalars['String']['input'];
7401
- type_id: Scalars['String']['input'];
7402
- wallet_type: Scalars['String']['input'];
7403
7399
  };
7404
7400
 
7405
7401
  export type UpdateUserInput = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.37.0",
3
+ "version": "1.39.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -5336,8 +5336,8 @@ type StripePaymentIntent {
5336
5336
  created_at: String!
5337
5337
  id: ID!
5338
5338
  payment_intent_id: String!
5339
- payment_intent_object: String!
5340
5339
  status: String!
5340
+ stripe_status: String!
5341
5341
  type_id: String!
5342
5342
  updatedAt: String!
5343
5343
  wallet_type: String!
@@ -5797,12 +5797,8 @@ input UpdatePaidAdParams {
5797
5797
  }
5798
5798
 
5799
5799
  input UpdateStripePaymentIntent {
5800
+ amount_cents: String!
5800
5801
  id: ID!
5801
- payment_intent_id: String!
5802
- payment_intent_object: String!
5803
- status: String!
5804
- type_id: String!
5805
- wallet_type: String!
5806
5802
  }
5807
5803
 
5808
5804
  input UpdateUserInput {