@promoboxx/graphql-gateway-types 1.713.0 → 1.715.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.
@@ -7027,6 +7027,26 @@
7027
7027
  "isDeprecated": false,
7028
7028
  "deprecationReason": null
7029
7029
  },
7030
+ {
7031
+ "name": "enrollment_landing_page_images",
7032
+ "description": null,
7033
+ "args": [],
7034
+ "type": {
7035
+ "kind": "LIST",
7036
+ "name": null,
7037
+ "ofType": {
7038
+ "kind": "NON_NULL",
7039
+ "name": null,
7040
+ "ofType": {
7041
+ "kind": "OBJECT",
7042
+ "name": "DigitalAsset",
7043
+ "ofType": null
7044
+ }
7045
+ }
7046
+ },
7047
+ "isDeprecated": false,
7048
+ "deprecationReason": null
7049
+ },
7030
7050
  {
7031
7051
  "name": "external_auth_login_url",
7032
7052
  "description": null,
@@ -9763,6 +9783,18 @@
9763
9783
  "description": null,
9764
9784
  "fields": null,
9765
9785
  "inputFields": [
9786
+ {
9787
+ "name": "category",
9788
+ "description": null,
9789
+ "type": {
9790
+ "kind": "SCALAR",
9791
+ "name": "String",
9792
+ "ofType": null
9793
+ },
9794
+ "defaultValue": null,
9795
+ "isDeprecated": false,
9796
+ "deprecationReason": null
9797
+ },
9766
9798
  {
9767
9799
  "name": "digital_asset_ids",
9768
9800
  "description": null,
@@ -18602,6 +18634,18 @@
18602
18634
  "description": null,
18603
18635
  "fields": null,
18604
18636
  "inputFields": [
18637
+ {
18638
+ "name": "category",
18639
+ "description": null,
18640
+ "type": {
18641
+ "kind": "SCALAR",
18642
+ "name": "String",
18643
+ "ofType": null
18644
+ },
18645
+ "defaultValue": null,
18646
+ "isDeprecated": false,
18647
+ "deprecationReason": null
18648
+ },
18605
18649
  {
18606
18650
  "name": "external_video_url",
18607
18651
  "description": null,
@@ -25342,6 +25386,18 @@
25342
25386
  "description": null,
25343
25387
  "fields": null,
25344
25388
  "inputFields": [
25389
+ {
25390
+ "name": "category",
25391
+ "description": null,
25392
+ "type": {
25393
+ "kind": "SCALAR",
25394
+ "name": "String",
25395
+ "ofType": null
25396
+ },
25397
+ "defaultValue": null,
25398
+ "isDeprecated": false,
25399
+ "deprecationReason": null
25400
+ },
25345
25401
  {
25346
25402
  "name": "files_only",
25347
25403
  "description": null,
@@ -35735,6 +35791,18 @@
35735
35791
  "isDeprecated": false,
35736
35792
  "deprecationReason": null
35737
35793
  },
35794
+ {
35795
+ "name": "category",
35796
+ "description": null,
35797
+ "type": {
35798
+ "kind": "SCALAR",
35799
+ "name": "String",
35800
+ "ofType": null
35801
+ },
35802
+ "defaultValue": null,
35803
+ "isDeprecated": false,
35804
+ "deprecationReason": null
35805
+ },
35738
35806
  {
35739
35807
  "name": "fields",
35740
35808
  "description": null,
@@ -46810,6 +46878,18 @@
46810
46878
  "name": "createDigitalAssetAssociables",
46811
46879
  "description": null,
46812
46880
  "args": [
46881
+ {
46882
+ "name": "category",
46883
+ "description": null,
46884
+ "type": {
46885
+ "kind": "SCALAR",
46886
+ "name": "String",
46887
+ "ofType": null
46888
+ },
46889
+ "defaultValue": null,
46890
+ "isDeprecated": false,
46891
+ "deprecationReason": null
46892
+ },
46813
46893
  {
46814
46894
  "name": "digital_asset_ids",
46815
46895
  "description": null,
@@ -94551,6 +94631,18 @@
94551
94631
  "description": null,
94552
94632
  "fields": null,
94553
94633
  "inputFields": [
94634
+ {
94635
+ "name": "category",
94636
+ "description": null,
94637
+ "type": {
94638
+ "kind": "SCALAR",
94639
+ "name": "String",
94640
+ "ofType": null
94641
+ },
94642
+ "defaultValue": null,
94643
+ "isDeprecated": false,
94644
+ "deprecationReason": null
94645
+ },
94554
94646
  {
94555
94647
  "name": "digital_asset_id",
94556
94648
  "description": null,
package/index.d.ts CHANGED
@@ -813,6 +813,7 @@ export type Brand = {
813
813
  divisions?: Maybe<Array<Division>>;
814
814
  email?: Maybe<Scalars['String']['output']>;
815
815
  engagement_flow_header_text?: Maybe<Scalars['String']['output']>;
816
+ enrollment_landing_page_images?: Maybe<Array<DigitalAsset>>;
816
817
  external_auth_login_url?: Maybe<Scalars['String']['output']>;
817
818
  facebook_ad_accounts?: Maybe<Array<AdAccount>>;
818
819
  facebook_id?: Maybe<Scalars['String']['output']>;
@@ -1101,6 +1102,7 @@ export type BulkSharesFilters = {
1101
1102
  };
1102
1103
 
1103
1104
  export type BulkUpdateDigitalAssetParams = {
1105
+ category?: InputMaybe<Scalars['String']['input']>;
1104
1106
  digital_asset_ids: Array<Scalars['ID']['input']>;
1105
1107
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
1106
1108
  logos?: InputMaybe<Array<DigitalAssetLogoInput>>;
@@ -2008,6 +2010,7 @@ export type CreateCustomFieldValueInput = {
2008
2010
  };
2009
2011
 
2010
2012
  export type CreateDigitalAssetParams = {
2013
+ category?: InputMaybe<Scalars['String']['input']>;
2011
2014
  external_video_url?: InputMaybe<Scalars['String']['input']>;
2012
2015
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
2013
2016
  logos?: InputMaybe<Array<DigitalAssetLogoInput>>;
@@ -2700,6 +2703,7 @@ export type DigitalAssetsFields =
2700
2703
  | 'tag_list';
2701
2704
 
2702
2705
  export type DigitalAssetsFilterParams = {
2706
+ category?: InputMaybe<Scalars['String']['input']>;
2703
2707
  files_only?: InputMaybe<Scalars['Boolean']['input']>;
2704
2708
  folders_only?: InputMaybe<Scalars['Boolean']['input']>;
2705
2709
  rep_only?: InputMaybe<Scalars['Boolean']['input']>;
@@ -3866,6 +3870,7 @@ export type GetDigitalAssetParams = {
3866
3870
 
3867
3871
  export type GetDigitalAssetsParams = {
3868
3872
  by_ancestry?: InputMaybe<Scalars['Boolean']['input']>;
3873
+ category?: InputMaybe<Scalars['String']['input']>;
3869
3874
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
3870
3875
  filterParams?: InputMaybe<DigitalAssetsFilterParams>;
3871
3876
  filter_brand_id?: InputMaybe<Scalars['ID']['input']>;
@@ -5737,6 +5742,7 @@ export type MutationCreateDigitalAssetArgs = {
5737
5742
 
5738
5743
  /** mutation root */
5739
5744
  export type MutationCreateDigitalAssetAssociablesArgs = {
5745
+ category?: InputMaybe<Scalars['String']['input']>;
5740
5746
  digital_asset_ids: Array<Scalars['ID']['input']>;
5741
5747
  resource_id: Scalars['ID']['input'];
5742
5748
  resource_type: Scalars['String']['input'];
@@ -12028,6 +12034,7 @@ export type UpdateCustomFieldValueInput = {
12028
12034
  };
12029
12035
 
12030
12036
  export type UpdateDigitalAssetParams = {
12037
+ category?: InputMaybe<Scalars['String']['input']>;
12031
12038
  digital_asset_id: Scalars['ID']['input'];
12032
12039
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
12033
12040
  logos?: InputMaybe<Array<DigitalAssetLogoInput>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.713.0",
3
+ "version": "1.715.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -791,6 +791,7 @@ type Brand {
791
791
  divisions: [Division!]
792
792
  email: String
793
793
  engagement_flow_header_text: String
794
+ enrollment_landing_page_images: [DigitalAsset!]
794
795
  external_auth_login_url: String
795
796
  facebook_ad_accounts: [AdAccount!]
796
797
  facebook_id: String
@@ -1072,6 +1073,7 @@ input BulkSharesFilters {
1072
1073
  }
1073
1074
 
1074
1075
  input BulkUpdateDigitalAssetParams {
1076
+ category: String
1075
1077
  digital_asset_ids: [ID!]!
1076
1078
  fields: [String!]
1077
1079
  logos: [DigitalAssetLogoInput!]
@@ -1912,6 +1914,7 @@ input CreateCustomFieldValueInput {
1912
1914
  }
1913
1915
 
1914
1916
  input CreateDigitalAssetParams {
1917
+ category: String
1915
1918
  external_video_url: String
1916
1919
  fields: [String!]
1917
1920
  logos: [DigitalAssetLogoInput!]
@@ -2584,6 +2587,7 @@ enum DigitalAssetsFields {
2584
2587
  }
2585
2588
 
2586
2589
  input DigitalAssetsFilterParams {
2590
+ category: String
2587
2591
  files_only: Boolean
2588
2592
  folders_only: Boolean
2589
2593
  rep_only: Boolean
@@ -3701,6 +3705,7 @@ input GetDigitalAssetParams {
3701
3705
 
3702
3706
  input GetDigitalAssetsParams {
3703
3707
  by_ancestry: Boolean
3708
+ category: String
3704
3709
  fields: [String!]
3705
3710
  filterParams: DigitalAssetsFilterParams
3706
3711
  filter_brand_id: ID
@@ -4769,7 +4774,7 @@ type Mutation {
4769
4774
  createContentDiscoveryCampaign(contentDiscoveryId: ID!, retailerId: ID!): Campaign!
4770
4775
  createCustomFieldValue(data: CreateCustomFieldValueData!, resourceId: ID!, resourceType: CreateCustomFieldResourceType!): CustomFieldValues
4771
4776
  createDigitalAsset(params: CreateDigitalAssetParams!): DigitalAsset
4772
- createDigitalAssetAssociables(digital_asset_ids: [ID!]!, resource_id: ID!, resource_type: String!): [DigitalAsset!]!
4777
+ createDigitalAssetAssociables(category: String, digital_asset_ids: [ID!]!, resource_id: ID!, resource_type: String!): [DigitalAsset!]!
4773
4778
  createDivision(brandId: ID!, params: CreateDivisionParams!): Division
4774
4779
  createEnrollmentSession(enrollment_flow_session: CreateEnrollmentSessionInput!, params: EnrollmentSessionParams): EnrollmentSession
4775
4780
  createFacebookAccount(access_token: String!, inline_auth_facebook_page_id: ID, name: String!, params: FacebookAccountParams, permissions: FacebookAccountPermissionsInput, send_notifications: Boolean, uid: ID!, user_id: ID!): FacebookAccount
@@ -10862,6 +10867,7 @@ input UpdateCustomFieldValueInput {
10862
10867
  }
10863
10868
 
10864
10869
  input UpdateDigitalAssetParams {
10870
+ category: String
10865
10871
  digital_asset_id: ID!
10866
10872
  fields: [String!]
10867
10873
  logos: [DigitalAssetLogoInput!]