@waldur/support 8.0.8-dev.41 → 8.0.8-dev.42

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/sdk.gen.js CHANGED
@@ -446,11 +446,7 @@ export const chatThreadsArchive = (options) => {
446
446
  }
447
447
  ],
448
448
  url: '/api/chat-threads/{uuid}/archive/',
449
- ...options,
450
- headers: {
451
- 'Content-Type': 'application/json',
452
- ...options.headers
453
- }
449
+ ...options
454
450
  });
455
451
  };
456
452
  /**
@@ -502,11 +498,7 @@ export const chatThreadsUnarchive = (options) => {
502
498
  }
503
499
  ],
504
500
  url: '/api/chat-threads/{uuid}/unarchive/',
505
- ...options,
506
- headers: {
507
- 'Content-Type': 'application/json',
508
- ...options.headers
509
- }
501
+ ...options
510
502
  });
511
503
  };
512
504
  /**
@@ -1276,11 +1268,7 @@ export const supportIssuesSync = (options) => {
1276
1268
  }
1277
1269
  ],
1278
1270
  url: '/api/support-issues/{uuid}/sync/',
1279
- ...options,
1280
- headers: {
1281
- 'Content-Type': 'application/json',
1282
- ...options.headers
1283
- }
1271
+ ...options
1284
1272
  });
1285
1273
  };
1286
1274
  export const supportJiraWebhook = (options) => {
@@ -1219,7 +1219,7 @@ export type ChatThreadsRetrieveResponses = {
1219
1219
  200: ThreadSession;
1220
1220
  };
1221
1221
  export type ChatThreadsArchiveData = {
1222
- body?: ThreadSessionRequest;
1222
+ body?: never;
1223
1223
  path: {
1224
1224
  uuid: string;
1225
1225
  };
@@ -1247,7 +1247,7 @@ export type ChatThreadsCancelResponses = {
1247
1247
  200: unknown;
1248
1248
  };
1249
1249
  export type ChatThreadsUnarchiveData = {
1250
- body?: ThreadSessionRequest;
1250
+ body?: never;
1251
1251
  path: {
1252
1252
  uuid: string;
1253
1253
  };
@@ -1885,7 +1885,7 @@ export type SupportIssuesCommentResponses = {
1885
1885
  200: Comment;
1886
1886
  };
1887
1887
  export type SupportIssuesSyncData = {
1888
- body: IssueRequest;
1888
+ body?: never;
1889
1889
  path: {
1890
1890
  uuid: string;
1891
1891
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@waldur/support",
3
- "version": "8.0.8-dev.41",
3
+ "version": "8.0.8-dev.42",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
package/src/sdk.gen.ts CHANGED
@@ -469,11 +469,7 @@ export const chatThreadsArchive = <ThrowOnError extends boolean = false>(options
469
469
  }
470
470
  ],
471
471
  url: '/api/chat-threads/{uuid}/archive/',
472
- ...options,
473
- headers: {
474
- 'Content-Type': 'application/json',
475
- ...options.headers
476
- }
472
+ ...options
477
473
  });
478
474
  };
479
475
 
@@ -527,11 +523,7 @@ export const chatThreadsUnarchive = <ThrowOnError extends boolean = false>(optio
527
523
  }
528
524
  ],
529
525
  url: '/api/chat-threads/{uuid}/unarchive/',
530
- ...options,
531
- headers: {
532
- 'Content-Type': 'application/json',
533
- ...options.headers
534
- }
526
+ ...options
535
527
  });
536
528
  };
537
529
 
@@ -1336,11 +1328,7 @@ export const supportIssuesSync = <ThrowOnError extends boolean = false>(options:
1336
1328
  }
1337
1329
  ],
1338
1330
  url: '/api/support-issues/{uuid}/sync/',
1339
- ...options,
1340
- headers: {
1341
- 'Content-Type': 'application/json',
1342
- ...options.headers
1343
- }
1331
+ ...options
1344
1332
  });
1345
1333
  };
1346
1334
 
package/src/types.gen.ts CHANGED
@@ -1340,7 +1340,7 @@ export type ChatThreadsRetrieveResponses = {
1340
1340
  };
1341
1341
 
1342
1342
  export type ChatThreadsArchiveData = {
1343
- body?: ThreadSessionRequest;
1343
+ body?: never;
1344
1344
  path: {
1345
1345
  uuid: string;
1346
1346
  };
@@ -1372,7 +1372,7 @@ export type ChatThreadsCancelResponses = {
1372
1372
  };
1373
1373
 
1374
1374
  export type ChatThreadsUnarchiveData = {
1375
- body?: ThreadSessionRequest;
1375
+ body?: never;
1376
1376
  path: {
1377
1377
  uuid: string;
1378
1378
  };
@@ -2080,7 +2080,7 @@ export type SupportIssuesCommentResponses = {
2080
2080
  };
2081
2081
 
2082
2082
  export type SupportIssuesSyncData = {
2083
- body: IssueRequest;
2083
+ body?: never;
2084
2084
  path: {
2085
2085
  uuid: string;
2086
2086
  };