@smapiot/piral-cloud-browser 0.13.0 → 0.13.1
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/lib/index.d.ts +8 -0
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -236,6 +236,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
236
236
|
id: string;
|
|
237
237
|
description: string;
|
|
238
238
|
hosts?: Array<string>;
|
|
239
|
+
npmRegistry?: boolean;
|
|
239
240
|
integrity?: boolean;
|
|
240
241
|
}
|
|
241
242
|
|
|
@@ -284,8 +285,10 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
284
285
|
active?: boolean;
|
|
285
286
|
hook?: string;
|
|
286
287
|
integrity?: boolean;
|
|
288
|
+
npmRegistry?: boolean;
|
|
287
289
|
contributors?: Array<string>;
|
|
288
290
|
domains?: Array<string>;
|
|
291
|
+
account?: string;
|
|
289
292
|
sources?: Array<{
|
|
290
293
|
type: string;
|
|
291
294
|
source: string;
|
|
@@ -385,6 +388,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
385
388
|
created: string;
|
|
386
389
|
changed: string;
|
|
387
390
|
self: boolean;
|
|
391
|
+
canCreateFeed: boolean | null;
|
|
388
392
|
}
|
|
389
393
|
|
|
390
394
|
export interface UserCreateDetails {
|
|
@@ -393,6 +397,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
393
397
|
name?: string;
|
|
394
398
|
plan?: string;
|
|
395
399
|
role?: string;
|
|
400
|
+
canCreateFeed?: boolean | null;
|
|
396
401
|
}
|
|
397
402
|
|
|
398
403
|
export interface ChangedUserDTO {
|
|
@@ -412,6 +417,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
412
417
|
plan?: string;
|
|
413
418
|
role?: string;
|
|
414
419
|
resetpass?: boolean;
|
|
420
|
+
canCreateFeed?: boolean | null;
|
|
415
421
|
}
|
|
416
422
|
|
|
417
423
|
export interface CustomRuleModulesDTO {
|
|
@@ -478,6 +484,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
478
484
|
created: string;
|
|
479
485
|
changed: string;
|
|
480
486
|
settings: Record<string, any>;
|
|
487
|
+
canCreateFeed: boolean;
|
|
481
488
|
}
|
|
482
489
|
|
|
483
490
|
export interface CurrentUserUpdateDetails {
|
|
@@ -744,6 +751,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
744
751
|
active: boolean;
|
|
745
752
|
deleted: boolean;
|
|
746
753
|
integrity: boolean;
|
|
754
|
+
npmRegistry: boolean;
|
|
747
755
|
hook: string;
|
|
748
756
|
hosts: Array<string>;
|
|
749
757
|
owner: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smapiot/piral-cloud-browser",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "Piral Cloud: Browser-usable API Client for the Piral Feed Service.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "smapiot",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"browser"
|
|
41
41
|
],
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@piral/feed-client": "^0.13.
|
|
43
|
+
"@piral/feed-client": "^0.13.1",
|
|
44
44
|
"dets": "^0.12.0",
|
|
45
45
|
"esbuild": "^0.14.51"
|
|
46
46
|
}
|