@promoboxx/graphql-gateway-types 1.569.0 → 1.571.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
|
@@ -17718,6 +17718,30 @@
|
|
|
17718
17718
|
"isDeprecated": false,
|
|
17719
17719
|
"deprecationReason": null
|
|
17720
17720
|
},
|
|
17721
|
+
{
|
|
17722
|
+
"name": "inviteable_id",
|
|
17723
|
+
"description": null,
|
|
17724
|
+
"type": {
|
|
17725
|
+
"kind": "SCALAR",
|
|
17726
|
+
"name": "ID",
|
|
17727
|
+
"ofType": null
|
|
17728
|
+
},
|
|
17729
|
+
"defaultValue": null,
|
|
17730
|
+
"isDeprecated": false,
|
|
17731
|
+
"deprecationReason": null
|
|
17732
|
+
},
|
|
17733
|
+
{
|
|
17734
|
+
"name": "inviteable_type",
|
|
17735
|
+
"description": null,
|
|
17736
|
+
"type": {
|
|
17737
|
+
"kind": "SCALAR",
|
|
17738
|
+
"name": "String",
|
|
17739
|
+
"ofType": null
|
|
17740
|
+
},
|
|
17741
|
+
"defaultValue": null,
|
|
17742
|
+
"isDeprecated": false,
|
|
17743
|
+
"deprecationReason": null
|
|
17744
|
+
},
|
|
17721
17745
|
{
|
|
17722
17746
|
"name": "landing_header_html",
|
|
17723
17747
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -1911,6 +1911,8 @@ export type CreateCampaignDataCampaign = {
|
|
|
1911
1911
|
facebook_url?: InputMaybe<Scalars['String']['input']>;
|
|
1912
1912
|
fb_ad_account_id?: InputMaybe<Scalars['ID']['input']>;
|
|
1913
1913
|
frame_content_url?: InputMaybe<Scalars['String']['input']>;
|
|
1914
|
+
inviteable_id?: InputMaybe<Scalars['ID']['input']>;
|
|
1915
|
+
inviteable_type?: InputMaybe<Scalars['String']['input']>;
|
|
1914
1916
|
landing_header_html?: InputMaybe<Scalars['String']['input']>;
|
|
1915
1917
|
landing_sidebar_html?: InputMaybe<Scalars['String']['input']>;
|
|
1916
1918
|
leads_always_send_transactional_email?: InputMaybe<Scalars['Boolean']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -1820,6 +1820,8 @@ input CreateCampaignDataCampaign {
|
|
|
1820
1820
|
facebook_url: String
|
|
1821
1821
|
fb_ad_account_id: ID
|
|
1822
1822
|
frame_content_url: String
|
|
1823
|
+
inviteable_id: ID
|
|
1824
|
+
inviteable_type: String
|
|
1823
1825
|
landing_header_html: String
|
|
1824
1826
|
landing_sidebar_html: String
|
|
1825
1827
|
leads_always_send_transactional_email: Boolean
|