@coast/core-api-types 1.2.187 → 1.2.188

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.
@@ -1,6 +1,6 @@
1
- import { Audit } from '../application/Audit';
2
- import { BusinessId } from '../business/BusinessId';
3
- import { UserId } from '../user/UserId';
1
+ import { Audit } from '../../application/Audit';
2
+ import { BusinessId } from '../../business/BusinessId';
3
+ import { UserId } from '../../user/UserId';
4
4
  import { ApiKeyId } from './ApiKeyId';
5
5
  export interface ApiKey extends Audit {
6
6
  id: ApiKeyId;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiKey.js","sourceRoot":"","sources":["../../../../src/models/auth/keys/ApiKey.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiKeyId.js","sourceRoot":"","sources":["../../../../src/models/auth/keys/ApiKeyId.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateApiKey.js","sourceRoot":"","sources":["../../../../src/models/auth/keys/CreateApiKey.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { ApiKey } from './ApiKey';
2
+ export interface CreateApiKeyResult {
3
+ authToken: string;
4
+ apiKey: ApiKey;
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=CreateApiKeyResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateApiKeyResult.js","sourceRoot":"","sources":["../../../../src/models/auth/keys/CreateApiKeyResult.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { OffsetPaginatedResult } from '../../pagination/OffsetPaginatedResult';
2
+ import { ApiKey } from './ApiKey';
3
+ export interface ListApiKeysResult extends OffsetPaginatedResult {
4
+ apiKeys: ApiKey[];
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListApiKeysResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListApiKeysResult.js","sourceRoot":"","sources":["../../../../src/models/auth/keys/ListApiKeysResult.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.187",
3
+ "version": "1.2.188",
4
4
  "description": "Facilitates the generation of core-api-types npm package",
5
5
  "exports": {
6
6
  "./*": {
@@ -1 +0,0 @@
1
- {"version":3,"file":"ApiKey.js","sourceRoot":"","sources":["../../../src/models/auth/ApiKey.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ApiKeyId.js","sourceRoot":"","sources":["../../../src/models/auth/ApiKeyId.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"CreateApiKey.js","sourceRoot":"","sources":["../../../src/models/auth/CreateApiKey.ts"],"names":[],"mappings":""}
File without changes