@promoboxx/graphql-gateway-types 1.129.0 → 1.130.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.
@@ -9515,6 +9515,18 @@
9515
9515
  "name": "CalendarItem",
9516
9516
  "description": null,
9517
9517
  "fields": [
9518
+ {
9519
+ "name": "associable",
9520
+ "description": null,
9521
+ "args": [],
9522
+ "type": {
9523
+ "kind": "UNION",
9524
+ "name": "CalendarItemAssociable",
9525
+ "ofType": null
9526
+ },
9527
+ "isDeprecated": false,
9528
+ "deprecationReason": null
9529
+ },
9518
9530
  {
9519
9531
  "name": "associable_id",
9520
9532
  "description": null,
@@ -9709,6 +9721,18 @@
9709
9721
  "isDeprecated": false,
9710
9722
  "deprecationReason": null
9711
9723
  },
9724
+ {
9725
+ "name": "share",
9726
+ "description": null,
9727
+ "args": [],
9728
+ "type": {
9729
+ "kind": "OBJECT",
9730
+ "name": "Share",
9731
+ "ofType": null
9732
+ },
9733
+ "isDeprecated": false,
9734
+ "deprecationReason": null
9735
+ },
9712
9736
  {
9713
9737
  "name": "start_date_at",
9714
9738
  "description": null,
@@ -9787,6 +9811,32 @@
9787
9811
  "enumValues": null,
9788
9812
  "possibleTypes": null
9789
9813
  },
9814
+ {
9815
+ "kind": "UNION",
9816
+ "name": "CalendarItemAssociable",
9817
+ "description": null,
9818
+ "fields": null,
9819
+ "inputFields": null,
9820
+ "interfaces": null,
9821
+ "enumValues": null,
9822
+ "possibleTypes": [
9823
+ {
9824
+ "kind": "OBJECT",
9825
+ "name": "Campaign",
9826
+ "ofType": null
9827
+ },
9828
+ {
9829
+ "kind": "OBJECT",
9830
+ "name": "CommunicationAutomation",
9831
+ "ofType": null
9832
+ },
9833
+ {
9834
+ "kind": "OBJECT",
9835
+ "name": "Share",
9836
+ "ofType": null
9837
+ }
9838
+ ]
9839
+ },
9790
9840
  {
9791
9841
  "kind": "INPUT_OBJECT",
9792
9842
  "name": "CalendarItemFilters",
package/index.d.ts CHANGED
@@ -1069,6 +1069,7 @@ export type BulkUpdateDigitalAssetParams = {
1069
1069
 
1070
1070
  export type CalendarItem = {
1071
1071
  __typename?: 'CalendarItem';
1072
+ associable?: Maybe<CalendarItemAssociable>;
1072
1073
  associable_id: Scalars['ID']['output'];
1073
1074
  associable_type: Scalars['String']['output'];
1074
1075
  campaign?: Maybe<Campaign>;
@@ -1080,6 +1081,7 @@ export type CalendarItem = {
1080
1081
  id: Scalars['ID']['output'];
1081
1082
  owner_id: Scalars['ID']['output'];
1082
1083
  owner_type: Scalars['String']['output'];
1084
+ share?: Maybe<Share>;
1083
1085
  start_date_at: Scalars['String']['output'];
1084
1086
  targetable_id?: Maybe<Scalars['ID']['output']>;
1085
1087
  targetable_type?: Maybe<Scalars['ID']['output']>;
@@ -1097,6 +1099,8 @@ export type CalendarItemCommunicationAutomationArgs = {
1097
1099
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
1098
1100
  };
1099
1101
 
1102
+ export type CalendarItemAssociable = Campaign | CommunicationAutomation | Share;
1103
+
1100
1104
  export type CalendarItemFilters = {
1101
1105
  max_date: Scalars['String']['input'];
1102
1106
  min_date: Scalars['String']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.129.0",
3
+ "version": "1.130.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1043,6 +1043,7 @@ input BulkUpdateDigitalAssetParams {
1043
1043
  }
1044
1044
 
1045
1045
  type CalendarItem {
1046
+ associable: CalendarItemAssociable
1046
1047
  associable_id: ID!
1047
1048
  associable_type: String!
1048
1049
  campaign(params: CampaignParams): Campaign
@@ -1054,6 +1055,7 @@ type CalendarItem {
1054
1055
  id: ID!
1055
1056
  owner_id: ID!
1056
1057
  owner_type: String!
1058
+ share: Share
1057
1059
  start_date_at: String!
1058
1060
  targetable_id: ID
1059
1061
  targetable_type: ID
@@ -1061,6 +1063,8 @@ type CalendarItem {
1061
1063
  updated_at: String!
1062
1064
  }
1063
1065
 
1066
+ union CalendarItemAssociable = Campaign | CommunicationAutomation | Share
1067
+
1064
1068
  input CalendarItemFilters {
1065
1069
  max_date: String!
1066
1070
  min_date: String!