@promoboxx/graphql-gateway-types 1.1063.0 → 1.1064.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 +24 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -15732,6 +15732,30 @@
|
|
|
15732
15732
|
"defaultValue": null,
|
|
15733
15733
|
"isDeprecated": false,
|
|
15734
15734
|
"deprecationReason": null
|
|
15735
|
+
},
|
|
15736
|
+
{
|
|
15737
|
+
"name": "resource_id",
|
|
15738
|
+
"description": null,
|
|
15739
|
+
"type": {
|
|
15740
|
+
"kind": "SCALAR",
|
|
15741
|
+
"name": "ID",
|
|
15742
|
+
"ofType": null
|
|
15743
|
+
},
|
|
15744
|
+
"defaultValue": null,
|
|
15745
|
+
"isDeprecated": false,
|
|
15746
|
+
"deprecationReason": null
|
|
15747
|
+
},
|
|
15748
|
+
{
|
|
15749
|
+
"name": "resource_type",
|
|
15750
|
+
"description": null,
|
|
15751
|
+
"type": {
|
|
15752
|
+
"kind": "SCALAR",
|
|
15753
|
+
"name": "String",
|
|
15754
|
+
"ofType": null
|
|
15755
|
+
},
|
|
15756
|
+
"defaultValue": null,
|
|
15757
|
+
"isDeprecated": false,
|
|
15758
|
+
"deprecationReason": null
|
|
15735
15759
|
}
|
|
15736
15760
|
],
|
|
15737
15761
|
"interfaces": null,
|
package/index.d.ts
CHANGED
|
@@ -1670,6 +1670,8 @@ export type CampaignInvitationResourceType =
|
|
|
1670
1670
|
|
|
1671
1671
|
export type CampaignParams = {
|
|
1672
1672
|
fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1673
|
+
resource_id?: InputMaybe<Scalars['ID']['input']>;
|
|
1674
|
+
resource_type?: InputMaybe<Scalars['String']['input']>;
|
|
1673
1675
|
};
|
|
1674
1676
|
|
|
1675
1677
|
export type CampaignResourceType =
|
package/package.json
CHANGED