@company-semantics/contracts 0.139.0 → 0.140.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.
- package/package.json +1 -1
- package/src/api/generated.ts +3 -27
- package/src/tiers.ts +1 -0
package/package.json
CHANGED
package/src/api/generated.ts
CHANGED
|
@@ -5110,15 +5110,7 @@ export interface operations {
|
|
|
5110
5110
|
};
|
|
5111
5111
|
cookie?: never;
|
|
5112
5112
|
};
|
|
5113
|
-
requestBody
|
|
5114
|
-
content: {
|
|
5115
|
-
"application/json": {
|
|
5116
|
-
orderKey: string;
|
|
5117
|
-
prevId: string | null;
|
|
5118
|
-
nextId: string | null;
|
|
5119
|
-
};
|
|
5120
|
-
};
|
|
5121
|
-
};
|
|
5113
|
+
requestBody?: never;
|
|
5122
5114
|
responses: {
|
|
5123
5115
|
/** @description Order key updated */
|
|
5124
5116
|
204: {
|
|
@@ -5430,15 +5422,7 @@ export interface operations {
|
|
|
5430
5422
|
};
|
|
5431
5423
|
cookie?: never;
|
|
5432
5424
|
};
|
|
5433
|
-
requestBody
|
|
5434
|
-
content: {
|
|
5435
|
-
"application/json": {
|
|
5436
|
-
orderKey: string;
|
|
5437
|
-
prevId: string | null;
|
|
5438
|
-
nextId: string | null;
|
|
5439
|
-
};
|
|
5440
|
-
};
|
|
5441
|
-
};
|
|
5425
|
+
requestBody?: never;
|
|
5442
5426
|
responses: {
|
|
5443
5427
|
/** @description Order key updated */
|
|
5444
5428
|
204: {
|
|
@@ -5661,15 +5645,7 @@ export interface operations {
|
|
|
5661
5645
|
};
|
|
5662
5646
|
cookie?: never;
|
|
5663
5647
|
};
|
|
5664
|
-
requestBody
|
|
5665
|
-
content: {
|
|
5666
|
-
"application/json": {
|
|
5667
|
-
orderKey: string;
|
|
5668
|
-
prevId: string | null;
|
|
5669
|
-
nextId: string | null;
|
|
5670
|
-
};
|
|
5671
|
-
};
|
|
5672
|
-
};
|
|
5648
|
+
requestBody?: never;
|
|
5673
5649
|
responses: {
|
|
5674
5650
|
/** @description Order key updated */
|
|
5675
5651
|
204: {
|
package/src/tiers.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { Tier } from './requests';
|