@devrev/ts-adaas 1.7.0 → 1.7.1-beta.1

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.
@@ -71,6 +71,7 @@ export interface SsorAttachment {
71
71
  actor_id?: {
72
72
  external: string;
73
73
  };
74
+ inline?: boolean;
74
75
  }
75
76
  export interface StatsFileResponse {
76
77
  error?: ErrorRecord;
@@ -632,6 +632,9 @@ class WorkerAdapter {
632
632
  external: attachment.author_id,
633
633
  };
634
634
  }
635
+ if (attachment.inline) {
636
+ ssorAttachment.inline = true;
637
+ }
635
638
  await ((_b = this.getRepo('ssor_attachment')) === null || _b === void 0 ? void 0 : _b.push([ssorAttachment]));
636
639
  }
637
640
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devrev/ts-adaas",
3
- "version": "1.7.0",
3
+ "version": "1.7.1-beta.1",
4
4
  "description": "Typescript library containing the ADaaS(AirDrop as a Service) control protocol.",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@devrev/typescript-sdk": "^1.1.59",
41
- "axios": "^1.9.0",
41
+ "axios": "^1.11.0",
42
42
  "axios-retry": "^4.5.0",
43
- "form-data": "^4.0.1",
43
+ "form-data": "^4.0.4",
44
44
  "js-jsonl": "^1.1.1",
45
45
  "ts-node": "^10.9.2",
46
46
  "typescript": "^5.3.3",