@promoboxx/graphql-gateway-types 1.34.0 → 1.35.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 +54 -1
- package/index.d.ts +8 -1
- package/package.json +1 -1
- package/schema.graphql +2 -1
package/graphql.schema.json
CHANGED
|
@@ -49840,7 +49840,7 @@
|
|
|
49840
49840
|
},
|
|
49841
49841
|
{
|
|
49842
49842
|
"name": "getStripePaymentIntentByID",
|
|
49843
|
-
"description":
|
|
49843
|
+
"description": null,
|
|
49844
49844
|
"args": [
|
|
49845
49845
|
{
|
|
49846
49846
|
"name": "id",
|
|
@@ -49871,6 +49871,59 @@
|
|
|
49871
49871
|
"isDeprecated": false,
|
|
49872
49872
|
"deprecationReason": null
|
|
49873
49873
|
},
|
|
49874
|
+
{
|
|
49875
|
+
"name": "getStripePaymentIntents",
|
|
49876
|
+
"description": "Gets the specific stripe payment intent with the given ID",
|
|
49877
|
+
"args": [
|
|
49878
|
+
{
|
|
49879
|
+
"name": "id",
|
|
49880
|
+
"description": null,
|
|
49881
|
+
"type": {
|
|
49882
|
+
"kind": "NON_NULL",
|
|
49883
|
+
"name": null,
|
|
49884
|
+
"ofType": {
|
|
49885
|
+
"kind": "SCALAR",
|
|
49886
|
+
"name": "ID",
|
|
49887
|
+
"ofType": null
|
|
49888
|
+
}
|
|
49889
|
+
},
|
|
49890
|
+
"defaultValue": null,
|
|
49891
|
+
"isDeprecated": false,
|
|
49892
|
+
"deprecationReason": null
|
|
49893
|
+
},
|
|
49894
|
+
{
|
|
49895
|
+
"name": "walletType",
|
|
49896
|
+
"description": null,
|
|
49897
|
+
"type": {
|
|
49898
|
+
"kind": "NON_NULL",
|
|
49899
|
+
"name": null,
|
|
49900
|
+
"ofType": {
|
|
49901
|
+
"kind": "SCALAR",
|
|
49902
|
+
"name": "String",
|
|
49903
|
+
"ofType": null
|
|
49904
|
+
}
|
|
49905
|
+
},
|
|
49906
|
+
"defaultValue": null,
|
|
49907
|
+
"isDeprecated": false,
|
|
49908
|
+
"deprecationReason": null
|
|
49909
|
+
}
|
|
49910
|
+
],
|
|
49911
|
+
"type": {
|
|
49912
|
+
"kind": "LIST",
|
|
49913
|
+
"name": null,
|
|
49914
|
+
"ofType": {
|
|
49915
|
+
"kind": "NON_NULL",
|
|
49916
|
+
"name": null,
|
|
49917
|
+
"ofType": {
|
|
49918
|
+
"kind": "OBJECT",
|
|
49919
|
+
"name": "StripePaymentIntent",
|
|
49920
|
+
"ofType": null
|
|
49921
|
+
}
|
|
49922
|
+
}
|
|
49923
|
+
},
|
|
49924
|
+
"isDeprecated": false,
|
|
49925
|
+
"deprecationReason": null
|
|
49926
|
+
},
|
|
49874
49927
|
{
|
|
49875
49928
|
"name": "getSupportedLocales",
|
|
49876
49929
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -5452,8 +5452,9 @@ export type Query = {
|
|
|
5452
5452
|
getSsoConnectionById: SsoConnection;
|
|
5453
5453
|
getSsoConnectionsForUser: Array<SsoConnection>;
|
|
5454
5454
|
getStats: StatsResponse;
|
|
5455
|
-
/** Gets the specific stripe payment intent with the given ID */
|
|
5456
5455
|
getStripePaymentIntentByID: StripePaymentIntent;
|
|
5456
|
+
/** Gets the specific stripe payment intent with the given ID */
|
|
5457
|
+
getStripePaymentIntents?: Maybe<Array<StripePaymentIntent>>;
|
|
5457
5458
|
getSupportedLocales?: Maybe<Array<Scalars['String']['output']>>;
|
|
5458
5459
|
getTwitterAccount: TwitterAccount;
|
|
5459
5460
|
getTwitterAccounts: Array<TwitterAccount>;
|
|
@@ -6084,6 +6085,12 @@ export type QueryGetStripePaymentIntentByIdArgs = {
|
|
|
6084
6085
|
};
|
|
6085
6086
|
|
|
6086
6087
|
|
|
6088
|
+
export type QueryGetStripePaymentIntentsArgs = {
|
|
6089
|
+
id: Scalars['ID']['input'];
|
|
6090
|
+
walletType: Scalars['String']['input'];
|
|
6091
|
+
};
|
|
6092
|
+
|
|
6093
|
+
|
|
6087
6094
|
export type QueryGetTwitterAccountArgs = {
|
|
6088
6095
|
id: Scalars['ID']['input'];
|
|
6089
6096
|
params?: InputMaybe<TwitterAccountParams>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -4560,9 +4560,10 @@ type Query {
|
|
|
4560
4560
|
getSsoConnectionById(id: ID!): SsoConnection!
|
|
4561
4561
|
getSsoConnectionsForUser(user_id: ID!): [SsoConnection!]!
|
|
4562
4562
|
getStats(params: GetStatsParams!, stats_type: StatsType!): StatsResponse!
|
|
4563
|
+
getStripePaymentIntentByID(id: ID!): StripePaymentIntent!
|
|
4563
4564
|
|
|
4564
4565
|
"""Gets the specific stripe payment intent with the given ID"""
|
|
4565
|
-
|
|
4566
|
+
getStripePaymentIntents(id: ID!, walletType: String!): [StripePaymentIntent!]
|
|
4566
4567
|
getSupportedLocales: [String!]
|
|
4567
4568
|
getTwitterAccount(id: ID!, params: TwitterAccountParams): TwitterAccount!
|
|
4568
4569
|
getTwitterAccounts(params: TwitterAccountParams, resourceId: ID!, resourceType: String!): [TwitterAccount!]!
|