@outseta/api-client 0.3.18 → 0.3.20

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/dist/index.js CHANGED
@@ -1779,7 +1779,8 @@ var SupportCaseSource = {
1779
1779
  // src/generated/models/supportCaseStatus.ts
1780
1780
  var SupportCaseStatus = {
1781
1781
  Open: 1,
1782
- Closed: 2
1782
+ Closed: 2,
1783
+ Spam: 3
1783
1784
  };
1784
1785
  // src/generated/models/tagColor.ts
1785
1786
  var TagColor = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outseta/api-client",
3
- "version": "0.3.18",
3
+ "version": "0.3.20",
4
4
  "description": "Generated API client for the Outseta REST API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -23,7 +23,7 @@ export type CaseAllOf = {
23
23
  UserAgent?: string | null;
24
24
  /**
25
25
  * @minimum 1
26
- * @maximum 2
26
+ * @maximum 3
27
27
  */
28
28
  Status: SupportCaseStatus;
29
29
  /**
@@ -1,7 +1,7 @@
1
1
  // @ts-nocheck
2
2
 
3
3
  /**
4
- * `1` - Open, `2` - Closed
4
+ * `1` - Open, `2` - Closed, `3` - Spam
5
5
  */
6
6
  export type SupportCaseStatus = typeof SupportCaseStatus[keyof typeof SupportCaseStatus];
7
7
 
@@ -10,4 +10,5 @@ export type SupportCaseStatus = typeof SupportCaseStatus[keyof typeof SupportCas
10
10
  export const SupportCaseStatus = {
11
11
  Open: 1,
12
12
  Closed: 2,
13
+ Spam: 3,
13
14
  } as const;