@promoboxx/graphql-gateway-types 1.1168.0 → 1.1170.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 -0
package/graphql.schema.json
CHANGED
|
@@ -26110,6 +26110,18 @@
|
|
|
26110
26110
|
"isDeprecated": false,
|
|
26111
26111
|
"deprecationReason": null
|
|
26112
26112
|
},
|
|
26113
|
+
{
|
|
26114
|
+
"name": "post_format",
|
|
26115
|
+
"description": null,
|
|
26116
|
+
"type": {
|
|
26117
|
+
"kind": "SCALAR",
|
|
26118
|
+
"name": "String",
|
|
26119
|
+
"ofType": null
|
|
26120
|
+
},
|
|
26121
|
+
"defaultValue": null,
|
|
26122
|
+
"isDeprecated": false,
|
|
26123
|
+
"deprecationReason": null
|
|
26124
|
+
},
|
|
26113
26125
|
{
|
|
26114
26126
|
"name": "share_setting_copy_options_attributes",
|
|
26115
26127
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -2705,6 +2705,7 @@ export type CreateShareSettingBulkShareSettingsParams = {
|
|
|
2705
2705
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
2706
2706
|
multi_share_end_card?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2707
2707
|
multi_share_optimized?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2708
|
+
post_format?: InputMaybe<Scalars['String']['input']>;
|
|
2708
2709
|
share_setting_copy_options_attributes?: InputMaybe<Array<SuggestedCopyInput>>;
|
|
2709
2710
|
share_url_type?: InputMaybe<Scalars['String']['input']>;
|
|
2710
2711
|
title?: InputMaybe<Scalars['String']['input']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -2587,6 +2587,7 @@ input CreateShareSettingBulkShareSettingsParams {
|
|
|
2587
2587
|
message: String
|
|
2588
2588
|
multi_share_end_card: Boolean
|
|
2589
2589
|
multi_share_optimized: Boolean
|
|
2590
|
+
post_format: String
|
|
2590
2591
|
share_setting_copy_options_attributes: [SuggestedCopyInput!]
|
|
2591
2592
|
share_url_type: String
|
|
2592
2593
|
title: String
|