@insurance-broker/api-client 1.5.0 → 1.6.0

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.
Files changed (2) hide show
  1. package/dist/schema.d.ts +88 -2
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -749,6 +749,40 @@ export interface paths {
749
749
  patch?: never;
750
750
  trace?: never;
751
751
  };
752
+ "/api/v1/document-classifications": {
753
+ parameters: {
754
+ query?: never;
755
+ header?: never;
756
+ path?: never;
757
+ cookie?: never;
758
+ };
759
+ /** The sensitivity labels a document may be uploaded with. */
760
+ get: operations["ListDataClassifications"];
761
+ put?: never;
762
+ post?: never;
763
+ delete?: never;
764
+ options?: never;
765
+ head?: never;
766
+ patch?: never;
767
+ trace?: never;
768
+ };
769
+ "/api/v1/customer/document-classifications": {
770
+ parameters: {
771
+ query?: never;
772
+ header?: never;
773
+ path?: never;
774
+ cookie?: never;
775
+ };
776
+ /** The sensitivity labels a document may be uploaded with. */
777
+ get: operations["ListCustomerDataClassifications"];
778
+ put?: never;
779
+ post?: never;
780
+ delete?: never;
781
+ options?: never;
782
+ head?: never;
783
+ patch?: never;
784
+ trace?: never;
785
+ };
752
786
  "/api/v1/customer/products": {
753
787
  parameters: {
754
788
  query?: never;
@@ -2082,6 +2116,13 @@ export interface components {
2082
2116
  /** Format: date-time */
2083
2117
  updatedAtUtc: string;
2084
2118
  };
2119
+ DataClassificationResponse: {
2120
+ key: string;
2121
+ name: string;
2122
+ description: null | string;
2123
+ /** Format: int32 */
2124
+ sortOrder: number | string;
2125
+ };
2085
2126
  DeclareFormDefinitionRequest: {
2086
2127
  /** Format: uuid */
2087
2128
  productId: null | string;
@@ -2745,6 +2786,7 @@ export interface components {
2745
2786
  scanVerdict: string;
2746
2787
  /** Format: date-time */
2747
2788
  scannedAtUtc: null | string;
2789
+ classification: null | string;
2748
2790
  };
2749
2791
  SubmissionAttachmentUpload: {
2750
2792
  file: components["schemas"]["IFormFile"];
@@ -4592,7 +4634,9 @@ export interface operations {
4592
4634
  UploadSubmissionAttachment: {
4593
4635
  parameters: {
4594
4636
  query?: never;
4595
- header?: never;
4637
+ header?: {
4638
+ "X-Document-Classification"?: string;
4639
+ };
4596
4640
  path: {
4597
4641
  id: string;
4598
4642
  evidenceKey: string;
@@ -4795,7 +4839,9 @@ export interface operations {
4795
4839
  UploadCustomerSubmissionAttachment: {
4796
4840
  parameters: {
4797
4841
  query?: never;
4798
- header?: never;
4842
+ header?: {
4843
+ "X-Document-Classification"?: string;
4844
+ };
4799
4845
  path: {
4800
4846
  id: string;
4801
4847
  evidenceKey: string;
@@ -5031,6 +5077,46 @@ export interface operations {
5031
5077
  };
5032
5078
  };
5033
5079
  };
5080
+ ListDataClassifications: {
5081
+ parameters: {
5082
+ query?: never;
5083
+ header?: never;
5084
+ path?: never;
5085
+ cookie?: never;
5086
+ };
5087
+ requestBody?: never;
5088
+ responses: {
5089
+ /** @description OK */
5090
+ 200: {
5091
+ headers: {
5092
+ [name: string]: unknown;
5093
+ };
5094
+ content: {
5095
+ "application/json": components["schemas"]["DataClassificationResponse"][];
5096
+ };
5097
+ };
5098
+ };
5099
+ };
5100
+ ListCustomerDataClassifications: {
5101
+ parameters: {
5102
+ query?: never;
5103
+ header?: never;
5104
+ path?: never;
5105
+ cookie?: never;
5106
+ };
5107
+ requestBody?: never;
5108
+ responses: {
5109
+ /** @description OK */
5110
+ 200: {
5111
+ headers: {
5112
+ [name: string]: unknown;
5113
+ };
5114
+ content: {
5115
+ "application/json": components["schemas"]["DataClassificationResponse"][];
5116
+ };
5117
+ };
5118
+ };
5119
+ };
5034
5120
  SearchOfferedProducts: {
5035
5121
  parameters: {
5036
5122
  query?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insurance-broker/api-client",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Generated TypeScript client for the Insurance Broker Platform API. Do not edit by hand: regenerate with scripts/update-api-contract.",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,