@insurance-broker/api-client 1.0.0 → 1.1.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 +53 -1
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -1521,7 +1521,8 @@ export interface paths {
1521
1521
  /** Lists the caller's own quote requests, newest first. */
1522
1522
  get: operations["ListCustomerQuotes"];
1523
1523
  put?: never;
1524
- post?: never;
1524
+ /** Asks the broker for a quote against one of the caller's submitted forms. */
1525
+ post: operations["RaiseCustomerQuote"];
1525
1526
  delete?: never;
1526
1527
  options?: never;
1527
1528
  head?: never;
@@ -7100,6 +7101,57 @@ export interface operations {
7100
7101
  };
7101
7102
  };
7102
7103
  };
7104
+ RaiseCustomerQuote: {
7105
+ parameters: {
7106
+ query?: never;
7107
+ header?: never;
7108
+ path?: never;
7109
+ cookie?: never;
7110
+ };
7111
+ requestBody: {
7112
+ content: {
7113
+ "application/json": components["schemas"]["RaiseQuoteRequestRequest"];
7114
+ };
7115
+ };
7116
+ responses: {
7117
+ /** @description Created */
7118
+ 201: {
7119
+ headers: {
7120
+ [name: string]: unknown;
7121
+ };
7122
+ content: {
7123
+ "application/json": components["schemas"]["CustomerQuoteResponse"];
7124
+ };
7125
+ };
7126
+ /** @description Bad Request */
7127
+ 400: {
7128
+ headers: {
7129
+ [name: string]: unknown;
7130
+ };
7131
+ content: {
7132
+ "application/problem+json": components["schemas"]["HttpValidationProblemDetails"];
7133
+ };
7134
+ };
7135
+ /** @description Conflict */
7136
+ 409: {
7137
+ headers: {
7138
+ [name: string]: unknown;
7139
+ };
7140
+ content: {
7141
+ "application/problem+json": components["schemas"]["ProblemDetails"];
7142
+ };
7143
+ };
7144
+ /** @description Unprocessable Entity */
7145
+ 422: {
7146
+ headers: {
7147
+ [name: string]: unknown;
7148
+ };
7149
+ content: {
7150
+ "application/problem+json": components["schemas"]["ProblemDetails"];
7151
+ };
7152
+ };
7153
+ };
7154
+ };
7103
7155
  GetCustomerQuote: {
7104
7156
  parameters: {
7105
7157
  query?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insurance-broker/api-client",
3
- "version": "1.0.0",
3
+ "version": "1.1.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,