@promoboxx/graphql-gateway-types 1.1112.0 → 1.1114.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.
@@ -110711,6 +110711,30 @@
110711
110711
  "isDeprecated": false,
110712
110712
  "deprecationReason": null
110713
110713
  },
110714
+ {
110715
+ "name": "fundingSources",
110716
+ "description": null,
110717
+ "args": [],
110718
+ "type": {
110719
+ "kind": "NON_NULL",
110720
+ "name": null,
110721
+ "ofType": {
110722
+ "kind": "LIST",
110723
+ "name": null,
110724
+ "ofType": {
110725
+ "kind": "NON_NULL",
110726
+ "name": null,
110727
+ "ofType": {
110728
+ "kind": "OBJECT",
110729
+ "name": "adsvcFundingSource",
110730
+ "ofType": null
110731
+ }
110732
+ }
110733
+ }
110734
+ },
110735
+ "isDeprecated": false,
110736
+ "deprecationReason": null
110737
+ },
110714
110738
  {
110715
110739
  "name": "id",
110716
110740
  "description": null,
@@ -110825,6 +110849,82 @@
110825
110849
  "enumValues": null,
110826
110850
  "possibleTypes": null
110827
110851
  },
110852
+ {
110853
+ "kind": "OBJECT",
110854
+ "name": "adsvcFundingSource",
110855
+ "description": null,
110856
+ "isOneOf": null,
110857
+ "fields": [
110858
+ {
110859
+ "name": "amountCents",
110860
+ "description": null,
110861
+ "args": [],
110862
+ "type": {
110863
+ "kind": "NON_NULL",
110864
+ "name": null,
110865
+ "ofType": {
110866
+ "kind": "SCALAR",
110867
+ "name": "Int",
110868
+ "ofType": null
110869
+ }
110870
+ },
110871
+ "isDeprecated": false,
110872
+ "deprecationReason": null
110873
+ },
110874
+ {
110875
+ "name": "entityID",
110876
+ "description": null,
110877
+ "args": [],
110878
+ "type": {
110879
+ "kind": "NON_NULL",
110880
+ "name": null,
110881
+ "ofType": {
110882
+ "kind": "SCALAR",
110883
+ "name": "String",
110884
+ "ofType": null
110885
+ }
110886
+ },
110887
+ "isDeprecated": false,
110888
+ "deprecationReason": null
110889
+ },
110890
+ {
110891
+ "name": "entityType",
110892
+ "description": null,
110893
+ "args": [],
110894
+ "type": {
110895
+ "kind": "NON_NULL",
110896
+ "name": null,
110897
+ "ofType": {
110898
+ "kind": "SCALAR",
110899
+ "name": "String",
110900
+ "ofType": null
110901
+ }
110902
+ },
110903
+ "isDeprecated": false,
110904
+ "deprecationReason": null
110905
+ },
110906
+ {
110907
+ "name": "ledgerType",
110908
+ "description": null,
110909
+ "args": [],
110910
+ "type": {
110911
+ "kind": "NON_NULL",
110912
+ "name": null,
110913
+ "ofType": {
110914
+ "kind": "SCALAR",
110915
+ "name": "String",
110916
+ "ofType": null
110917
+ }
110918
+ },
110919
+ "isDeprecated": false,
110920
+ "deprecationReason": null
110921
+ }
110922
+ ],
110923
+ "inputFields": null,
110924
+ "interfaces": [],
110925
+ "enumValues": null,
110926
+ "possibleTypes": null
110927
+ },
110828
110928
  {
110829
110929
  "kind": "OBJECT",
110830
110930
  "name": "adsvcGetRetailerCampaignResponse",
package/index.d.ts CHANGED
@@ -13727,6 +13727,7 @@ export type AdsvcCampaignInvitation = {
13727
13727
  campaignID: Scalars['ID']['output'];
13728
13728
  createdAt: Scalars['String']['output'];
13729
13729
  failureReason?: Maybe<Scalars['String']['output']>;
13730
+ fundingSources: Array<AdsvcFundingSource>;
13730
13731
  id: Scalars['ID']['output'];
13731
13732
  intendedAmountCents: Scalars['Int']['output'];
13732
13733
  refundAttempts: Scalars['Int']['output'];
@@ -13736,6 +13737,14 @@ export type AdsvcCampaignInvitation = {
13736
13737
  updatedAt: Scalars['String']['output'];
13737
13738
  };
13738
13739
 
13740
+ export type AdsvcFundingSource = {
13741
+ __typename?: 'adsvcFundingSource';
13742
+ amountCents: Scalars['Int']['output'];
13743
+ entityID: Scalars['String']['output'];
13744
+ entityType: Scalars['String']['output'];
13745
+ ledgerType: Scalars['String']['output'];
13746
+ };
13747
+
13739
13748
  export type AdsvcGetRetailerCampaignResponse = {
13740
13749
  __typename?: 'adsvcGetRetailerCampaignResponse';
13741
13750
  automated: Scalars['Boolean']['output'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1112.0",
3
+ "version": "1.1114.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -12224,6 +12224,7 @@ type adsvcCampaignInvitation {
12224
12224
  campaignID: ID!
12225
12225
  createdAt: String!
12226
12226
  failureReason: String
12227
+ fundingSources: [adsvcFundingSource!]!
12227
12228
  id: ID!
12228
12229
  intendedAmountCents: Int!
12229
12230
  refundAttempts: Int!
@@ -12233,6 +12234,13 @@ type adsvcCampaignInvitation {
12233
12234
  updatedAt: String!
12234
12235
  }
12235
12236
 
12237
+ type adsvcFundingSource {
12238
+ amountCents: Int!
12239
+ entityID: String!
12240
+ entityType: String!
12241
+ ledgerType: String!
12242
+ }
12243
+
12236
12244
  type adsvcGetRetailerCampaignResponse {
12237
12245
  automated: Boolean!
12238
12246
  automatedNow: Boolean!