octopian-apis 1.0.43 → 1.0.44

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "octopian-apis",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "description": "Transaction APIs SDK that implements Octopian Services which will be used for any node project typescript or javascript",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -103,8 +103,7 @@ export async function GetMyApprovedCorrespondenceRequests(
103
103
  for (let group of attributeGroup) {
104
104
  for (let attribute of group.RequestAttributeDtos) {
105
105
  if (
106
- attribute.AttributeTypeValueTypeName ===
107
- AttributeTypeValueTypeNames.Attachment
106
+ attribute.AttributeTypeValueTypeName === "Attachment"
108
107
  ) {
109
108
  Attachments.push({
110
109
  id: attribute.RequestAttributeId || 0,
@@ -290,8 +289,7 @@ export async function GetMyRejectedCorrespondenceRequests(
290
289
  for (let group of attributeGroup) {
291
290
  for (let attribute of group.RequestAttributeDtos) {
292
291
  if (
293
- attribute.AttributeTypeValueTypeName ===
294
- AttributeTypeValueTypeNames.Attachment
292
+ attribute.AttributeTypeValueTypeName === "Attachment"
295
293
  ) {
296
294
  Attachments.push({
297
295
  id: attribute.RequestAttributeId || 0,
@@ -464,8 +462,7 @@ export async function GetMyDraftCorrespondenceRequests(
464
462
  for (let group of attributeGroup) {
465
463
  for (let attribute of group.RequestAttributeDtos) {
466
464
  if (
467
- attribute.AttributeTypeValueTypeName ===
468
- AttributeTypeValueTypeNames.Attachment
465
+ attribute.AttributeTypeValueTypeName === "Attachment"
469
466
  ) {
470
467
  Attachments.push({
471
468
  id: attribute.RequestAttributeId || 0,
@@ -610,8 +607,7 @@ export async function GetInProcessCorrespondenceRequests(
610
607
  for (let group of attributeGroup) {
611
608
  for (let attribute of group.RequestAttributeDtos) {
612
609
  if (
613
- attribute.AttributeTypeValueTypeName ===
614
- AttributeTypeValueTypeNames.Attachment
610
+ attribute.AttributeTypeValueTypeName === "Attachment"
615
611
  ) {
616
612
  Attachments.push({
617
613
  id: attribute.RequestAttributeId || 0,
@@ -758,8 +754,7 @@ export async function GetMyClosedCorrespondenceRequests(
758
754
  for (let group of attributeGroup) {
759
755
  for (let attribute of group.RequestAttributeDtos) {
760
756
  if (
761
- attribute.AttributeTypeValueTypeName ===
762
- AttributeTypeValueTypeNames.Attachment
757
+ attribute.AttributeTypeValueTypeName === "Attachment"
763
758
  ) {
764
759
  Attachments.push({
765
760
  id: attribute.RequestAttributeId || 0,
@@ -1057,8 +1052,7 @@ export async function GetMyInboxCorrespondenceRequests(
1057
1052
  for (let group of attributeGroup) {
1058
1053
  for (let attribute of group.RequestAttributeDtos) {
1059
1054
  if (
1060
- attribute.AttributeTypeValueTypeName ===
1061
- AttributeTypeValueTypeNames.Attachment
1055
+ attribute.AttributeTypeValueTypeName === "Attachment"
1062
1056
  ) {
1063
1057
  Attachments.push({
1064
1058
  id: attribute.RequestAttributeId || 0,