@ibiliaze/global-vars 1.199.0 → 1.200.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.
|
@@ -148,6 +148,22 @@ export declare const occupanceRoleDefs: <TId, TDate>() => readonly [{
|
|
|
148
148
|
message: string;
|
|
149
149
|
error: string;
|
|
150
150
|
};
|
|
151
|
+
}, {
|
|
152
|
+
readonly method: "put";
|
|
153
|
+
readonly path: "/occupance/many";
|
|
154
|
+
readonly role: "putOccupances";
|
|
155
|
+
readonly name: "Update many occupances";
|
|
156
|
+
readonly response_200: {
|
|
157
|
+
occupances: OccupanceBase<TId, TDate>[];
|
|
158
|
+
message: string;
|
|
159
|
+
};
|
|
160
|
+
readonly response_400: {
|
|
161
|
+
message: string;
|
|
162
|
+
};
|
|
163
|
+
readonly response_500: {
|
|
164
|
+
message: string;
|
|
165
|
+
error: string;
|
|
166
|
+
};
|
|
151
167
|
}, {
|
|
152
168
|
readonly method: "delete";
|
|
153
169
|
readonly path: "/occupance/stale";
|
|
@@ -82,6 +82,15 @@ const occupanceRoleDefs = () => {
|
|
|
82
82
|
response_404: {},
|
|
83
83
|
response_500: {},
|
|
84
84
|
},
|
|
85
|
+
{
|
|
86
|
+
method: 'put',
|
|
87
|
+
path: '/occupance/many',
|
|
88
|
+
role: 'putOccupances',
|
|
89
|
+
name: 'Update many occupances',
|
|
90
|
+
response_200: {},
|
|
91
|
+
response_400: {},
|
|
92
|
+
response_500: {},
|
|
93
|
+
},
|
|
85
94
|
{
|
|
86
95
|
method: 'delete',
|
|
87
96
|
path: '/occupance/stale',
|
|
@@ -1903,6 +1903,22 @@ export declare const apis: <TId, TDate>() => readonly [{
|
|
|
1903
1903
|
message: string;
|
|
1904
1904
|
error: string;
|
|
1905
1905
|
};
|
|
1906
|
+
}, {
|
|
1907
|
+
readonly method: "put";
|
|
1908
|
+
readonly path: "/occupance/many";
|
|
1909
|
+
readonly role: "putOccupances";
|
|
1910
|
+
readonly name: "Update many occupances";
|
|
1911
|
+
readonly response_200: {
|
|
1912
|
+
occupances: import("./inputsDefault").OccupanceBase<TId_21, TDate_21>[];
|
|
1913
|
+
message: string;
|
|
1914
|
+
};
|
|
1915
|
+
readonly response_400: {
|
|
1916
|
+
message: string;
|
|
1917
|
+
};
|
|
1918
|
+
readonly response_500: {
|
|
1919
|
+
message: string;
|
|
1920
|
+
error: string;
|
|
1921
|
+
};
|
|
1906
1922
|
}, {
|
|
1907
1923
|
readonly method: "delete";
|
|
1908
1924
|
readonly path: "/occupance/stale";
|
|
@@ -4444,6 +4460,22 @@ declare const allApis: readonly [{
|
|
|
4444
4460
|
message: string;
|
|
4445
4461
|
error: string;
|
|
4446
4462
|
};
|
|
4463
|
+
}, {
|
|
4464
|
+
readonly method: "put";
|
|
4465
|
+
readonly path: "/occupance/many";
|
|
4466
|
+
readonly role: "putOccupances";
|
|
4467
|
+
readonly name: "Update many occupances";
|
|
4468
|
+
readonly response_200: {
|
|
4469
|
+
occupances: import("./inputsDefault").OccupanceBase<TId_20, TDate_20>[];
|
|
4470
|
+
message: string;
|
|
4471
|
+
};
|
|
4472
|
+
readonly response_400: {
|
|
4473
|
+
message: string;
|
|
4474
|
+
};
|
|
4475
|
+
readonly response_500: {
|
|
4476
|
+
message: string;
|
|
4477
|
+
error: string;
|
|
4478
|
+
};
|
|
4447
4479
|
}, {
|
|
4448
4480
|
readonly method: "delete";
|
|
4449
4481
|
readonly path: "/occupance/stale";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiliaze/global-vars",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.200.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.200.0 -m 'v1.200.0'; git push origin v1.200.0; git push",
|
|
26
26
|
"push": "npm run build; npm run git; npm run pub"
|
|
27
27
|
},
|
|
28
28
|
"author": "Ibi Hasanli",
|