@promoboxx/graphql-gateway-types 1.75.0 → 1.77.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 +12 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -1
package/graphql.schema.json
CHANGED
|
@@ -51046,6 +51046,18 @@
|
|
|
51046
51046
|
"defaultValue": null,
|
|
51047
51047
|
"isDeprecated": false,
|
|
51048
51048
|
"deprecationReason": null
|
|
51049
|
+
},
|
|
51050
|
+
{
|
|
51051
|
+
"name": "min_ledger_balance",
|
|
51052
|
+
"description": null,
|
|
51053
|
+
"type": {
|
|
51054
|
+
"kind": "SCALAR",
|
|
51055
|
+
"name": "Int",
|
|
51056
|
+
"ofType": null
|
|
51057
|
+
},
|
|
51058
|
+
"defaultValue": null,
|
|
51059
|
+
"isDeprecated": false,
|
|
51060
|
+
"deprecationReason": null
|
|
51049
51061
|
}
|
|
51050
51062
|
],
|
|
51051
51063
|
"type": {
|
package/index.d.ts
CHANGED
|
@@ -6223,6 +6223,7 @@ export type QueryGet_Transaction_HistoryArgs = {
|
|
|
6223
6223
|
export type QueryGet_Wallet_By_Brand_Or_BusinessArgs = {
|
|
6224
6224
|
brand_id?: InputMaybe<Scalars['ID']['input']>;
|
|
6225
6225
|
business_id?: InputMaybe<Scalars['ID']['input']>;
|
|
6226
|
+
min_ledger_balance?: InputMaybe<Scalars['Int']['input']>;
|
|
6226
6227
|
};
|
|
6227
6228
|
|
|
6228
6229
|
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -4612,7 +4612,7 @@ type Query {
|
|
|
4612
4612
|
get wallet by brand or business
|
|
4613
4613
|
returns the wallet and the associated ledgers for the requested brand or business
|
|
4614
4614
|
"""
|
|
4615
|
-
get_wallet_by_brand_or_business(brand_id: ID, business_id: ID): Wallet!
|
|
4615
|
+
get_wallet_by_brand_or_business(brand_id: ID, business_id: ID, min_ledger_balance: Int): Wallet!
|
|
4616
4616
|
manualBusinessRequest(id: ID!, params: FacebookPageParams): FacebookPage
|
|
4617
4617
|
validateToken: ValidateTokenResponse
|
|
4618
4618
|
zipDigitalAssets(params: ZipDigitalAssetsParams): ZipDigitalAssetsResponse!
|