@balena/open-balena-api 31.4.8-build-renovate-balena-open-balena-base-18-0-x-3ea42c7f801985e6ae98cea283296b87b7415552-2 → 31.4.9-build-rephrase-sbvr-for-si-8994bf41f95b28b21cbb4a6498d46edc55ab11e8-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/dist/balena-init.sql +18 -4
- package/dist/balena-model.d.ts +24 -27
- package/dist/balena.sbvr +3 -13
- package/dist/features/device-state/routes/state-get-v3.d.ts +22 -26
- package/dist/index.d.ts +5 -1
- package/dist/migrations/00099-change-device-service-env-var-unique-constraint.sql +14 -0
- package/dist/translations/v7/v7.d.ts +5 -1
- package/dist/translations/v7/v7.js +5 -1
- package/dist/translations/v7/v7.js.map +1 -1
- package/package.json +2 -2
package/dist/balena-init.sql
CHANGED
@@ -81,10 +81,7 @@ ON "device family" ("is manufactured by-device manufacturer");
|
|
81
81
|
|
82
82
|
-- "device tag"."device" is the first part of an automated unique index
|
83
83
|
|
84
|
-
-- "device environment variable"."device" is created with the unique index
|
85
|
-
CREATE UNIQUE INDEX IF NOT EXISTS "device service environment variable_device_service_name_key"
|
86
|
-
ON "device service environment variable" ("device", "service", "name");
|
87
|
-
|
84
|
+
-- "device environment variable"."device" is created with the unique index created by the "device service environment variable_device_service_name_key" constraint
|
88
85
|
CREATE INDEX IF NOT EXISTS "device_service_environment_variable_service_idx"
|
89
86
|
ON "device service environment variable" ("service");
|
90
87
|
|
@@ -206,3 +203,20 @@ ADD CONSTRAINT "user$M+9koFfMHn7kQFDNBaQZbS7gAvNMB1QkrTtsaVZoETw=" CHECK (NOT (
|
|
206
203
|
));
|
207
204
|
|
208
205
|
ALTER TABLE "user" ADD UNIQUE ("email");
|
206
|
+
|
207
|
+
-- This is here temporarily due to a change on the sbvr for device service environment variable
|
208
|
+
-- in order to keep the database schema in sync with the sbvr
|
209
|
+
-- and will be removed once we drop the service install column
|
210
|
+
DO $$
|
211
|
+
BEGIN
|
212
|
+
IF NOT EXISTS (
|
213
|
+
SELECT 1
|
214
|
+
FROM pg_constraint
|
215
|
+
WHERE conname = 'device service environment variable_service install_name_key'
|
216
|
+
) THEN
|
217
|
+
ALTER TABLE "device service environment variable"
|
218
|
+
ADD CONSTRAINT "device service environment variable_service install_name_key"
|
219
|
+
UNIQUE ("service install", "name");
|
220
|
+
END IF;
|
221
|
+
END
|
222
|
+
$$;
|
package/dist/balena-model.d.ts
CHANGED
@@ -596,10 +596,9 @@ export interface Service {
|
|
596
596
|
device__installs__application__has__service_name?: Array<ServiceInstall['Read']>;
|
597
597
|
device__installs__service?: Array<ServiceInstall['Read']>;
|
598
598
|
service_install?: Array<ServiceInstall['Read']>;
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
service_install__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
599
|
+
device__has__application__has__service_name__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
600
|
+
device__has__service__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
601
|
+
device__has__service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
603
602
|
device_service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
604
603
|
is_installed_on__device?: Array<ServiceInstall['Read']>;
|
605
604
|
is_built_by__image?: Array<Image['Read']>;
|
@@ -752,6 +751,10 @@ export interface Device {
|
|
752
751
|
device_environment_variable?: Array<DeviceEnvironmentVariable['Read']>;
|
753
752
|
device__has__config_var_name?: Array<DeviceConfigVariable['Read']>;
|
754
753
|
device_config_variable?: Array<DeviceConfigVariable['Read']>;
|
754
|
+
device__has__application__has__service_name__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
755
|
+
device__has__service__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
756
|
+
device__has__service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
757
|
+
device_service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
755
758
|
device__has__tag_key?: Array<DeviceTag['Read']>;
|
756
759
|
device_tag?: Array<DeviceTag['Read']>;
|
757
760
|
device__installs__image?: Array<ImageInstall['Read']>;
|
@@ -759,11 +762,6 @@ export interface Device {
|
|
759
762
|
device__installs__application__has__service_name?: Array<ServiceInstall['Read']>;
|
760
763
|
device__installs__service?: Array<ServiceInstall['Read']>;
|
761
764
|
service_install?: Array<ServiceInstall['Read']>;
|
762
|
-
device__installs__application__has__service_name__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
763
|
-
device__installs__service__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
764
|
-
device__installs__service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
765
|
-
service_install__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
766
|
-
device_service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
767
765
|
installs__image?: Array<ImageInstall['Read']>;
|
768
766
|
installs__application__has__service_name?: Array<ServiceInstall['Read']>;
|
769
767
|
installs__service?: Array<ServiceInstall['Read']>;
|
@@ -903,11 +901,6 @@ export interface ServiceInstall {
|
|
903
901
|
__id: Service['Read']['id'];
|
904
902
|
} | [Service['Read']];
|
905
903
|
id: Types['Serial']['Read'];
|
906
|
-
device__installs__application__has__service_name__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
907
|
-
device__installs__service__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
908
|
-
device__installs__service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
909
|
-
service_install__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
910
|
-
device_service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
911
904
|
application__has__service_name: {
|
912
905
|
__id: Service['Read']['id'];
|
913
906
|
} | [Service['Read']];
|
@@ -920,6 +913,10 @@ export interface ServiceInstall {
|
|
920
913
|
is_installed_on__device: {
|
921
914
|
__id: Device['Read']['id'];
|
922
915
|
} | [Device['Read']];
|
916
|
+
is_of__device__has__application__has__service_name__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
917
|
+
is_of__device__has__service__has__name?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
918
|
+
is_of__device__has__service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
919
|
+
is_of__device_service_environment_variable?: Array<DeviceServiceEnvironmentVariable['Read']>;
|
923
920
|
};
|
924
921
|
Write: {
|
925
922
|
created_at: Types['Date Time']['Write'];
|
@@ -933,18 +930,18 @@ export interface DeviceServiceEnvironmentVariable {
|
|
933
930
|
Read: {
|
934
931
|
created_at: Types['Date Time']['Read'];
|
935
932
|
modified_at: Types['Date Time']['Read'];
|
936
|
-
service_install: {
|
937
|
-
__id: ServiceInstall['Read']['id'];
|
938
|
-
} | [ServiceInstall['Read']];
|
939
|
-
name: Types['Short Text']['Read'];
|
940
|
-
id: Types['Serial']['Read'];
|
941
|
-
value: Types['Text']['Read'];
|
942
|
-
service: {
|
943
|
-
__id: Service['Read']['id'];
|
944
|
-
} | [Service['Read']];
|
945
933
|
device: {
|
946
934
|
__id: Device['Read']['id'];
|
947
935
|
} | [Device['Read']];
|
936
|
+
service: {
|
937
|
+
__id: Service['Read']['id'];
|
938
|
+
} | [Service['Read']];
|
939
|
+
name: Types['Short Text']['Read'];
|
940
|
+
id: Types['Serial']['Read'];
|
941
|
+
value: Types['Text']['Read'];
|
942
|
+
service_install: {
|
943
|
+
__id: ServiceInstall['Read']['id'];
|
944
|
+
} | [ServiceInstall['Read']];
|
948
945
|
device__installs__application__has__service_name: {
|
949
946
|
__id: ServiceInstall['Read']['id'];
|
950
947
|
} | [ServiceInstall['Read']];
|
@@ -958,12 +955,12 @@ export interface DeviceServiceEnvironmentVariable {
|
|
958
955
|
Write: {
|
959
956
|
created_at: Types['Date Time']['Write'];
|
960
957
|
modified_at: Types['Date Time']['Write'];
|
961
|
-
|
958
|
+
device: Device['Write']['id'];
|
959
|
+
service: Service['Write']['id'];
|
962
960
|
name: Types['Short Text']['Write'];
|
963
961
|
id: Types['Serial']['Write'];
|
964
962
|
value: Types['Text']['Write'];
|
965
|
-
|
966
|
-
device: Device['Write']['id'];
|
963
|
+
service_install: ServiceInstall['Write']['id'];
|
967
964
|
};
|
968
965
|
}
|
969
966
|
export interface DeviceTag {
|
@@ -1302,7 +1299,7 @@ export default interface $Model {
|
|
1302
1299
|
device__has__config_var_name: DeviceConfigVariable;
|
1303
1300
|
device__installs__image: ImageInstall;
|
1304
1301
|
device__installs__application__has__service_name: ServiceInstall;
|
1305
|
-
|
1302
|
+
device__has__application__has__service_name__has__name: DeviceServiceEnvironmentVariable;
|
1306
1303
|
device__has__tag_key: DeviceTag;
|
1307
1304
|
release: Release;
|
1308
1305
|
release__has__tag_key: ReleaseTag;
|
package/dist/balena.sbvr
CHANGED
@@ -395,9 +395,7 @@ Term: device
|
|
395
395
|
Term Form: service install
|
396
396
|
Database Table Name: service install
|
397
397
|
|
398
|
-
|
399
|
-
-- Fact type: device has service has env var name
|
400
|
-
Fact type: service install has name (Auth)
|
398
|
+
Fact type: device has service has name (Auth)
|
401
399
|
Term Form: device service environment variable
|
402
400
|
Database Table Name: device service environment variable
|
403
401
|
|
@@ -814,16 +812,8 @@ Fact type: image environment variable has value
|
|
814
812
|
|
815
813
|
Fact type: device service environment variable has value
|
816
814
|
Necessity: each device service environment variable has exactly one value.
|
817
|
-
Fact type: device service environment variable has service
|
818
|
-
|
819
|
-
-- once the device service environment variable origin fact type changes
|
820
|
-
Synonymous form: service has device service environment variable
|
821
|
-
Necessity: each device service environment variable has exactly one service.
|
822
|
-
Fact type: device service environment variable has device
|
823
|
-
-- This is the default name that will be given to the synonymous form
|
824
|
-
-- once the device service environment variable origin fact type changes
|
825
|
-
Synonymous form: device has device service environment variable
|
826
|
-
Necessity: each device service environment variable has exactly one device.
|
815
|
+
Fact type: device service environment variable has service install
|
816
|
+
Necessity: each device service environment variable has exactly one service install.
|
827
817
|
|
828
818
|
|
829
819
|
-- application tag
|
@@ -179,6 +179,10 @@ declare const getDevice: (req: import("@balena/pinejs/out/sbvr-api/permissions.j
|
|
179
179
|
device_environment_variable?: Array<import("../../../balena-model.js").DeviceEnvironmentVariable["Read"]>;
|
180
180
|
device__has__config_var_name?: Array<import("../../../balena-model.js").DeviceConfigVariable["Read"]>;
|
181
181
|
device_config_variable?: Array<import("../../../balena-model.js").DeviceConfigVariable["Read"]>;
|
182
|
+
device__has__application__has__service_name__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
183
|
+
device__has__service__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
184
|
+
device__has__service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
185
|
+
device_service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
182
186
|
device__has__tag_key?: Array<import("../../../balena-model.js").DeviceTag["Read"]>;
|
183
187
|
device_tag?: Array<import("../../../balena-model.js").DeviceTag["Read"]>;
|
184
188
|
device__installs__image?: Array<import("../../../balena-model.js").ImageInstall["Read"]>;
|
@@ -186,11 +190,6 @@ declare const getDevice: (req: import("@balena/pinejs/out/sbvr-api/permissions.j
|
|
186
190
|
device__installs__application__has__service_name?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
187
191
|
device__installs__service?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
188
192
|
service_install?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
189
|
-
device__installs__application__has__service_name__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
190
|
-
device__installs__service__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
191
|
-
device__installs__service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
192
|
-
service_install__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
193
|
-
device_service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
194
193
|
installs__image?: Array<import("../../../balena-model.js").ImageInstall["Read"]>;
|
195
194
|
installs__application__has__service_name?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
196
195
|
installs__service?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
@@ -335,10 +334,9 @@ declare const getDevice: (req: import("@balena/pinejs/out/sbvr-api/permissions.j
|
|
335
334
|
device__installs__application__has__service_name?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
336
335
|
device__installs__service?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
337
336
|
service_install?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
service_install__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
337
|
+
device__has__application__has__service_name__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
338
|
+
device__has__service__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
339
|
+
device__has__service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
342
340
|
device_service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
343
341
|
is_installed_on__device?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
344
342
|
is_built_by__image?: Array<import("../../../balena-model.js").Image["Read"]>;
|
@@ -402,18 +400,18 @@ declare const getDevice: (req: import("@balena/pinejs/out/sbvr-api/permissions.j
|
|
402
400
|
readonly device_service_environment_variable: import("@balena/abstract-sql-to-typescript").PickDeferred<{
|
403
401
|
created_at: import("@balena/sbvr-types").Types["Date Time"]["Read"];
|
404
402
|
modified_at: import("@balena/sbvr-types").Types["Date Time"]["Read"];
|
405
|
-
service_install: {
|
406
|
-
__id: import("../../../balena-model.js").ServiceInstall["Read"]["id"];
|
407
|
-
} | [import("../../../balena-model.js").ServiceInstall["Read"]];
|
408
|
-
name: import("@balena/sbvr-types").Types["Short Text"]["Read"];
|
409
|
-
id: import("@balena/sbvr-types").Types["Serial"]["Read"];
|
410
|
-
value: import("@balena/sbvr-types").Types["Text"]["Read"];
|
411
|
-
service: {
|
412
|
-
__id: import("../../../balena-model.js").Service["Read"]["id"];
|
413
|
-
} | [import("../../../balena-model.js").Service["Read"]];
|
414
403
|
device: {
|
415
404
|
__id: import("../../../balena-model.js").Device["Read"]["id"];
|
416
405
|
} | [import("../../../balena-model.js").Device["Read"]];
|
406
|
+
service: {
|
407
|
+
__id: import("../../../balena-model.js").Service["Read"]["id"];
|
408
|
+
} | [import("../../../balena-model.js").Service["Read"]];
|
409
|
+
name: import("@balena/sbvr-types").Types["Short Text"]["Read"];
|
410
|
+
id: import("@balena/sbvr-types").Types["Serial"]["Read"];
|
411
|
+
value: import("@balena/sbvr-types").Types["Text"]["Read"];
|
412
|
+
service_install: {
|
413
|
+
__id: import("../../../balena-model.js").ServiceInstall["Read"]["id"];
|
414
|
+
} | [import("../../../balena-model.js").ServiceInstall["Read"]];
|
417
415
|
device__installs__application__has__service_name: {
|
418
416
|
__id: import("../../../balena-model.js").ServiceInstall["Read"]["id"];
|
419
417
|
} | [import("../../../balena-model.js").ServiceInstall["Read"]];
|
@@ -654,10 +652,9 @@ declare const getDevice: (req: import("@balena/pinejs/out/sbvr-api/permissions.j
|
|
654
652
|
device__installs__application__has__service_name?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
655
653
|
device__installs__service?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
656
654
|
service_install?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
service_install__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
655
|
+
device__has__application__has__service_name__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
656
|
+
device__has__service__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
657
|
+
device__has__service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
661
658
|
device_service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
662
659
|
is_installed_on__device?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
663
660
|
is_built_by__image?: Array<import("../../../balena-model.js").Image["Read"]>;
|
@@ -888,10 +885,9 @@ declare const getDevice: (req: import("@balena/pinejs/out/sbvr-api/permissions.j
|
|
888
885
|
device__installs__application__has__service_name?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
889
886
|
device__installs__service?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
890
887
|
service_install?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
service_install__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
888
|
+
device__has__application__has__service_name__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
889
|
+
device__has__service__has__name?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
890
|
+
device__has__service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
895
891
|
device_service_environment_variable?: Array<import("../../../balena-model.js").DeviceServiceEnvironmentVariable["Read"]>;
|
896
892
|
is_installed_on__device?: Array<import("../../../balena-model.js").ServiceInstall["Read"]>;
|
897
893
|
is_built_by__image?: Array<import("../../../balena-model.js").Image["Read"]>;
|
package/dist/index.d.ts
CHANGED
@@ -205,7 +205,11 @@ export declare const envVarsConfig: {
|
|
205
205
|
import './translations/v6/numeric-big-integer-hack.js';
|
206
206
|
export declare const translations: {
|
207
207
|
v7: {
|
208
|
-
getTranslations: (_abstractSqlModel?: import("@balena/abstract-sql-compiler").AbstractSqlModel) => {
|
208
|
+
getTranslations: (_abstractSqlModel?: import("@balena/abstract-sql-compiler").AbstractSqlModel) => {
|
209
|
+
'device-installs-application-has-service name-has-name': {
|
210
|
+
$toResource: string;
|
211
|
+
};
|
212
|
+
};
|
209
213
|
loadHooks: () => Promise<typeof import("./translations/v7/hooks.js")>;
|
210
214
|
};
|
211
215
|
v6: {
|
@@ -0,0 +1,14 @@
|
|
1
|
+
DO $$
|
2
|
+
BEGIN
|
3
|
+
IF NOT EXISTS (
|
4
|
+
SELECT 1
|
5
|
+
FROM pg_constraint
|
6
|
+
WHERE conname = 'device service environment variable_device_service_name_key'
|
7
|
+
) THEN
|
8
|
+
ALTER TABLE "device service environment variable"
|
9
|
+
ADD CONSTRAINT "device service environment variable_device_service_name_key"
|
10
|
+
-- see migration 00095 which adds the index already on ("device", "service", "name")
|
11
|
+
UNIQUE USING INDEX "device service environment variable_device_service_name_key";
|
12
|
+
END IF;
|
13
|
+
END
|
14
|
+
$$;
|
@@ -1,3 +1,7 @@
|
|
1
1
|
export declare const toVersion = "resin";
|
2
2
|
export declare const v7AbstractSqlModel: import("@balena/abstract-sql-compiler").AbstractSqlModel;
|
3
|
-
export declare const getV7Translations: (_abstractSqlModel?: import("@balena/abstract-sql-compiler").AbstractSqlModel) => {
|
3
|
+
export declare const getV7Translations: (_abstractSqlModel?: import("@balena/abstract-sql-compiler").AbstractSqlModel) => {
|
4
|
+
'device-installs-application-has-service name-has-name': {
|
5
|
+
$toResource: string;
|
6
|
+
};
|
7
|
+
};
|
@@ -7,6 +7,10 @@ overrideFieldType(v7AbstractSqlModel, 'release', 'version', 'JSON');
|
|
7
7
|
userHasDirectAccessToApplication.addToModel(v7AbstractSqlModel);
|
8
8
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- So that the interface is already well defined.
|
9
9
|
export const getV7Translations = (_abstractSqlModel = v7AbstractSqlModel) => {
|
10
|
-
return {
|
10
|
+
return {
|
11
|
+
'device-installs-application-has-service name-has-name': {
|
12
|
+
$toResource: 'device-has-application-has-service name-has-name',
|
13
|
+
},
|
14
|
+
};
|
11
15
|
};
|
12
16
|
//# sourceMappingURL=v7.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"v7.js","sourceRoot":"","sources":["../../../src/translations/v7/v7.ts"],"names":[],"mappings":"AACA,OAAO,EACN,wBAAwB,EACxB,iBAAiB,EACjB,sBAAsB,GACtB,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,gCAAgC,MAAM,+EAA+E,CAAC;AAElI,MAAM,CAAC,MAAM,SAAS,GAAG,OAAO,CAAC;AAEjC,MAAM,CAAC,MAAM,kBAAkB,GAAG,wBAAwB,CACzD,IAAI,GAAG,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CACnC,CAAC;AAEF,sBAAsB,CAAC,kBAAkB,CAAC,CAAC;AAE3C,iBAAiB,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;AAEpE,gCAAgC,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC;AAChE,+GAA+G;AAC/G,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,iBAAiB,GAAG,kBAAkB,EAAE,EAAE;IAC3E,OAAO,
|
1
|
+
{"version":3,"file":"v7.js","sourceRoot":"","sources":["../../../src/translations/v7/v7.ts"],"names":[],"mappings":"AACA,OAAO,EACN,wBAAwB,EACxB,iBAAiB,EACjB,sBAAsB,GACtB,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,gCAAgC,MAAM,+EAA+E,CAAC;AAElI,MAAM,CAAC,MAAM,SAAS,GAAG,OAAO,CAAC;AAEjC,MAAM,CAAC,MAAM,kBAAkB,GAAG,wBAAwB,CACzD,IAAI,GAAG,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CACnC,CAAC;AAEF,sBAAsB,CAAC,kBAAkB,CAAC,CAAC;AAE3C,iBAAiB,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,CAAC,CAAC;AAEpE,gCAAgC,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC;AAChE,+GAA+G;AAC/G,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,iBAAiB,GAAG,kBAAkB,EAAE,EAAE;IAC3E,OAAO;QACN,uDAAuD,EAAE;YACxD,WAAW,EAAE,kDAAkD;SAC/D;KAC4C,CAAC;AAChD,CAAC,CAAC"}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@balena/open-balena-api",
|
3
3
|
"description": "Internet of things, Made Simple",
|
4
|
-
"version": "31.4.
|
4
|
+
"version": "31.4.9-build-rephrase-sbvr-for-si-8994bf41f95b28b21cbb4a6498d46edc55ab11e8-1",
|
5
5
|
"license": "AGPL-3.0",
|
6
6
|
"repository": {
|
7
7
|
"type": "git",
|
@@ -166,6 +166,6 @@
|
|
166
166
|
"loader": "ts-node/esm/transpile-only"
|
167
167
|
},
|
168
168
|
"versionist": {
|
169
|
-
"publishedAt": "2024-12-
|
169
|
+
"publishedAt": "2024-12-05T10:55:27.456Z"
|
170
170
|
}
|
171
171
|
}
|