pingram 1.0.20 → 1.0.21-alpha.1347

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.
@@ -73,12 +73,6 @@ export interface SenderPostBody {
73
73
  parameters?: {
74
74
  [key: string]: any;
75
75
  };
76
- /**
77
- * Optional sub-notification identifier for grouping or tracking.
78
- * @type {string}
79
- * @memberof SenderPostBody
80
- */
81
- secondaryId?: string;
82
76
  /**
83
77
  * Specific template ID to use. If omitted, uses the default template for each channel.
84
78
  * @type {string}
@@ -54,7 +54,6 @@ function SenderPostBodyFromJSONTyped(json, ignoreDiscriminator) {
54
54
  ? undefined
55
55
  : json['forceChannels'].map(ChannelsEnum_1.ChannelsEnumFromJSON),
56
56
  parameters: json['parameters'] == null ? undefined : json['parameters'],
57
- secondaryId: json['secondaryId'] == null ? undefined : json['secondaryId'],
58
57
  templateId: json['templateId'] == null ? undefined : json['templateId'],
59
58
  subNotificationId: json['subNotificationId'] == null ? undefined : json['subNotificationId'],
60
59
  options: json['options'] == null
@@ -99,7 +98,6 @@ function SenderPostBodyToJSONTyped(value, ignoreDiscriminator = false) {
99
98
  ? undefined
100
99
  : (value['forceChannels'] ?? []).map(ChannelsEnum_1.ChannelsEnumToJSON),
101
100
  parameters: value['parameters'],
102
- secondaryId: value['secondaryId'],
103
101
  templateId: value['templateId'],
104
102
  subNotificationId: value['subNotificationId'],
105
103
  options: (0, SenderPostBodyOptions_1.SenderPostBodyOptionsToJSON)(value['options']),
@@ -8,7 +8,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
8
8
  exports.Pingram = void 0;
9
9
  const src_1 = require("../generated/src");
10
10
  // SDK version for User-Agent header (injected at codegen time)
11
- const SDK_VERSION = '1.0.20';
11
+ const SDK_VERSION = '1.0.21';
12
12
  const USER_AGENT = `pingram-node/${SDK_VERSION}`;
13
13
  const src_2 = require("../generated/src");
14
14
  const src_3 = require("../generated/src");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pingram",
3
- "version": "1.0.20",
3
+ "version": "1.0.21-alpha.1347",
4
4
  "description": "Official Node.js SDK for Pingram - Send notifications via Email, SMS, Push, In-App, and more",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",