@smapiot/piral-cloud-browser 1.16.2-pre.20250429.1 → 1.16.2-pre.20250430.2
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 +12 -8
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -277,10 +277,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
277
277
|
contributors: Array<string>;
|
|
278
278
|
targetFeeds: Array<string>;
|
|
279
279
|
links: Record<string, string>;
|
|
280
|
-
sources: Array<
|
|
281
|
-
type: string;
|
|
282
|
-
source: string;
|
|
283
|
-
}>;
|
|
280
|
+
sources: Array<FeedSourceReference>;
|
|
284
281
|
domains: Array<string>;
|
|
285
282
|
retentionPolicies: Array<string>;
|
|
286
283
|
invalidDomains: Array<string>;
|
|
@@ -435,6 +432,11 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
435
432
|
integrity?: boolean;
|
|
436
433
|
scanned?: boolean;
|
|
437
434
|
cleanup?: number;
|
|
435
|
+
hook?: string;
|
|
436
|
+
contributors?: Array<string>;
|
|
437
|
+
retentionPolicies?: Array<string>;
|
|
438
|
+
domains?: Array<string>;
|
|
439
|
+
sources?: Array<FeedSourceReference>;
|
|
438
440
|
}
|
|
439
441
|
|
|
440
442
|
export interface CreatedFeedDTO {
|
|
@@ -516,10 +518,7 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
516
518
|
retentionPolicies?: Array<string>;
|
|
517
519
|
domains?: Array<string>;
|
|
518
520
|
account?: string;
|
|
519
|
-
sources?: Array<
|
|
520
|
-
type: string;
|
|
521
|
-
source: string;
|
|
522
|
-
}>;
|
|
521
|
+
sources?: Array<FeedSourceReference>;
|
|
523
522
|
}
|
|
524
523
|
|
|
525
524
|
export interface ApiKeyUpdateDetails {
|
|
@@ -1024,6 +1023,11 @@ declare module "@smapiot/piral-cloud-browser" {
|
|
|
1024
1023
|
cleanup?: number;
|
|
1025
1024
|
}
|
|
1026
1025
|
|
|
1026
|
+
export interface FeedSourceReference {
|
|
1027
|
+
type: string;
|
|
1028
|
+
source: string;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1027
1031
|
export type EnvironmentTriggerType = "immediate" | "periodically" | "delayed" | "manual";
|
|
1028
1032
|
|
|
1029
1033
|
export interface EnvironmentApprovalRules {
|
package/package.json
CHANGED