@ibiliaze/global-vars 1.156.0 → 1.157.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { SeatBase, OccupanceBase, FlatOccupanceWithSeat, PopulatedOccupance } from '../inputsDefault';
|
|
1
|
+
import type { SeatBase, OccupanceBase, FlatOccupanceWithSeat, PopulatedOccupance, ItemBase } from '../inputsDefault';
|
|
2
2
|
export declare const occupanceRoleDefs: <TId, TDate>() => readonly [{
|
|
3
3
|
readonly method: "get";
|
|
4
4
|
readonly path: "/seat";
|
|
@@ -92,6 +92,7 @@ export declare const occupanceRoleDefs: <TId, TDate>() => readonly [{
|
|
|
92
92
|
readonly role: "postOccupanceReserveById";
|
|
93
93
|
readonly name: "Reserve occupance by ID";
|
|
94
94
|
readonly response_200: {
|
|
95
|
+
item: ItemBase<TId, TDate>;
|
|
95
96
|
occupance: OccupanceBase<TId, TDate>;
|
|
96
97
|
reservedAt: number;
|
|
97
98
|
message: string;
|
|
@@ -117,6 +118,7 @@ export declare const occupanceRoleDefs: <TId, TDate>() => readonly [{
|
|
|
117
118
|
readonly role: "postSeasonalOccupanceReserveById";
|
|
118
119
|
readonly name: "Reserve seasonal occupance by ID";
|
|
119
120
|
readonly response_200: {
|
|
121
|
+
item: ItemBase<TId, TDate>;
|
|
120
122
|
occupance: OccupanceBase<TId, TDate>;
|
|
121
123
|
reservedAt: number;
|
|
122
124
|
message: string;
|
|
@@ -1950,6 +1950,7 @@ export declare const apis: <TId, TDate>() => readonly [{
|
|
|
1950
1950
|
readonly role: "postOccupanceReserveById";
|
|
1951
1951
|
readonly name: "Reserve occupance by ID";
|
|
1952
1952
|
readonly response_200: {
|
|
1953
|
+
item: import("./inputsDefault").ItemBase<TId_21, TDate_21>;
|
|
1953
1954
|
occupance: import("./inputsDefault").OccupanceBase<TId_21, TDate_21>;
|
|
1954
1955
|
reservedAt: number;
|
|
1955
1956
|
message: string;
|
|
@@ -1975,6 +1976,7 @@ export declare const apis: <TId, TDate>() => readonly [{
|
|
|
1975
1976
|
readonly role: "postSeasonalOccupanceReserveById";
|
|
1976
1977
|
readonly name: "Reserve seasonal occupance by ID";
|
|
1977
1978
|
readonly response_200: {
|
|
1979
|
+
item: import("./inputsDefault").ItemBase<TId_21, TDate_21>;
|
|
1978
1980
|
occupance: import("./inputsDefault").OccupanceBase<TId_21, TDate_21>;
|
|
1979
1981
|
reservedAt: number;
|
|
1980
1982
|
message: string;
|
|
@@ -4530,6 +4532,7 @@ declare const allApis: readonly [{
|
|
|
4530
4532
|
readonly role: "postOccupanceReserveById";
|
|
4531
4533
|
readonly name: "Reserve occupance by ID";
|
|
4532
4534
|
readonly response_200: {
|
|
4535
|
+
item: import("./inputsDefault").ItemBase<TId_20, TDate_20>;
|
|
4533
4536
|
occupance: import("./inputsDefault").OccupanceBase<TId_20, TDate_20>;
|
|
4534
4537
|
reservedAt: number;
|
|
4535
4538
|
message: string;
|
|
@@ -4555,6 +4558,7 @@ declare const allApis: readonly [{
|
|
|
4555
4558
|
readonly role: "postSeasonalOccupanceReserveById";
|
|
4556
4559
|
readonly name: "Reserve seasonal occupance by ID";
|
|
4557
4560
|
readonly response_200: {
|
|
4561
|
+
item: import("./inputsDefault").ItemBase<TId_20, TDate_20>;
|
|
4558
4562
|
occupance: import("./inputsDefault").OccupanceBase<TId_20, TDate_20>;
|
|
4559
4563
|
reservedAt: number;
|
|
4560
4564
|
message: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiliaze/global-vars",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.157.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "tsc",
|
|
24
24
|
"pub": "npm publish --access public",
|
|
25
|
-
"git": "git add .; git commit -m 'changes'; git tag -a v1.
|
|
25
|
+
"git": "git add .; git commit -m 'changes'; git tag -a v1.157.0 -m 'v1.157.0'; git push origin v1.157.0; git push",
|
|
26
26
|
"push": "npm run build; npm run git; npm run pub"
|
|
27
27
|
},
|
|
28
28
|
"author": "Ibi Hasanli",
|