cf-service-sdk 0.1.49 → 0.1.50

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.
@@ -5934,6 +5934,7 @@ export type UpdateCombinedCampaign = {
5934
5934
  __typename?: 'UpdateCombinedCampaign';
5935
5935
  campaign?: Maybe<CombinedCampaignObject>;
5936
5936
  message?: Maybe<Scalars['String']['output']>;
5937
+ stepOrderChanged?: Maybe<Scalars['Boolean']['output']>;
5937
5938
  success?: Maybe<Scalars['Boolean']['output']>;
5938
5939
  };
5939
5940
  /** GraphQL input type for updating a campaign */
@@ -5972,6 +5973,7 @@ export type UpdateCombinedCampaignLogs = {
5972
5973
  __typename?: 'UpdateCombinedCampaignLogs';
5973
5974
  contactLogFailures?: Maybe<Scalars['Int']['output']>;
5974
5975
  message?: Maybe<Scalars['String']['output']>;
5976
+ prerequisiteBlockedCount?: Maybe<Scalars['Int']['output']>;
5975
5977
  success?: Maybe<Scalars['Boolean']['output']>;
5976
5978
  updatedCount?: Maybe<Scalars['Int']['output']>;
5977
5979
  };
@@ -14169,6 +14171,7 @@ export type UpdateCombinedCampaignMutation = {
14169
14171
  __typename?: 'UpdateCombinedCampaign';
14170
14172
  success?: boolean | null;
14171
14173
  message?: string | null;
14174
+ stepOrderChanged?: boolean | null;
14172
14175
  campaign?: {
14173
14176
  __typename?: 'CombinedCampaignObject';
14174
14177
  id?: string | null;
@@ -14574,6 +14577,7 @@ export type UpdateCombinedCampaignLogsMutation = {
14574
14577
  __typename?: 'UpdateCombinedCampaignLogs';
14575
14578
  updatedCount?: number | null;
14576
14579
  contactLogFailures?: number | null;
14580
+ prerequisiteBlockedCount?: number | null;
14577
14581
  success?: boolean | null;
14578
14582
  message?: string | null;
14579
14583
  } | null;
@@ -10511,6 +10511,7 @@ exports.UpdateCombinedCampaignDocument = (0, client_1.gql) `
10511
10511
  }
10512
10512
  success
10513
10513
  message
10514
+ stepOrderChanged
10514
10515
  }
10515
10516
  }
10516
10517
  `;
@@ -10856,6 +10857,7 @@ exports.UpdateCombinedCampaignLogsDocument = (0, client_1.gql) `
10856
10857
  ) {
10857
10858
  updatedCount
10858
10859
  contactLogFailures
10860
+ prerequisiteBlockedCount
10859
10861
  success
10860
10862
  message
10861
10863
  }
package/dist/mutations.js CHANGED
@@ -3852,6 +3852,7 @@ mutation UpdateCombinedCampaign($input: UpdateCombinedCampaignInput!, $steps: [C
3852
3852
  }
3853
3853
  success
3854
3854
  message
3855
+ stepOrderChanged
3855
3856
  }
3856
3857
  }`;
3857
3858
  exports.DELETE_COMBINED_CAMPAIGN = (0, client_1.gql) `
@@ -4568,6 +4569,7 @@ mutation UpdateCombinedCampaignLogs($logIds: [ID]!, $notes: String, $outcome: St
4568
4569
  updateCombinedCampaignLogs(logIds: $logIds, notes: $notes, outcome: $outcome, status: $status) {
4569
4570
  updatedCount
4570
4571
  contactLogFailures
4572
+ prerequisiteBlockedCount
4571
4573
  success
4572
4574
  message
4573
4575
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.49",
3
+ "version": "0.1.50",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",