@ampsec/platform-client 46.8.0 → 46.10.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.
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { BaseDto, BaseUpsertDto } from './base.dto';
|
|
2
|
-
export type AmpSecretKey = string;
|
|
3
|
-
export type AmpSecretValue = unknown;
|
|
4
|
-
export type AmpSecretUpsertDto = BaseUpsertDto & {
|
|
5
|
-
/** Key to the secret */
|
|
6
|
-
key: AmpSecretKey;
|
|
7
|
-
/** Value of the secret */
|
|
8
|
-
value?: AmpSecretValue;
|
|
9
|
-
};
|
|
10
|
-
export type AmpSecretDto = BaseDto & AmpSecretUpsertDto;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ampSecret.dto.js","sourceRoot":"","sources":["../../../src/dto/ampSecret.dto.ts"],"names":[],"mappings":""}
|
package/src/dto/ampSecret.dto.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import {BaseDto, BaseUpsertDto} from './base.dto';
|
|
2
|
-
|
|
3
|
-
export type AmpSecretKey = string;
|
|
4
|
-
|
|
5
|
-
export type AmpSecretValue = unknown;
|
|
6
|
-
|
|
7
|
-
export type AmpSecretUpsertDto = BaseUpsertDto & {
|
|
8
|
-
/** Key to the secret */
|
|
9
|
-
key: AmpSecretKey;
|
|
10
|
-
/** Value of the secret */
|
|
11
|
-
value?: AmpSecretValue;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
export type AmpSecretDto = BaseDto & AmpSecretUpsertDto;
|