@or-sdk/deployer 1.7.4-beta.4184.0 → 1.7.4
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.7.4](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/deployer@1.7.3...@or-sdk/deployer@1.7.4) (2026-07-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @or-sdk/deployer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.7.3](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/deployer@1.7.2...@or-sdk/deployer@1.7.3) (2026-04-30)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @or-sdk/deployer
|
|
@@ -1,34 +1,15 @@
|
|
|
1
1
|
import type { Token } from '@or-sdk/base';
|
|
2
2
|
export type { Token };
|
|
3
3
|
export type DeployerConfigBase = {
|
|
4
|
-
/**
|
|
5
|
-
* OneReach token or token factory function
|
|
6
|
-
*/
|
|
7
4
|
token: Token;
|
|
8
|
-
/**
|
|
9
|
-
* Account id for cross-account requests (super admin only)
|
|
10
|
-
*/
|
|
11
5
|
accountId?: string;
|
|
12
6
|
};
|
|
13
7
|
export type DeployerConfigWithDiscovery = DeployerConfigBase & {
|
|
14
|
-
/**
|
|
15
|
-
* URL of OneReach ServiceDiscovery API
|
|
16
|
-
*
|
|
17
|
-
* If this is set, do not provide {@link DeployerConfig.deployerUrl}.
|
|
18
|
-
*/
|
|
19
8
|
discoveryUrl: string;
|
|
20
9
|
deployerUrl?: never;
|
|
21
10
|
};
|
|
22
11
|
export type DeployerConfigWithExplicitUrls = DeployerConfigBase & {
|
|
23
|
-
/**
|
|
24
|
-
* URL of OneReach Deployer API
|
|
25
|
-
*
|
|
26
|
-
* If this is set, do not provide {@link DeployerConfig.discoveryUrl}.
|
|
27
|
-
*/
|
|
28
12
|
deployerUrl: string;
|
|
29
|
-
/**
|
|
30
|
-
* URL of OneReach ServiceDiscovery API
|
|
31
|
-
*/
|
|
32
13
|
discoveryUrl?: never;
|
|
33
14
|
};
|
|
34
15
|
export type DeployerConfig = DeployerConfigWithDiscovery | DeployerConfigWithExplicitUrls;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/types/base.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAE1C,YAAY,EAAE,KAAK,EAAE,CAAC;AAEtB,MAAM,MAAM,kBAAkB,GAAG;
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../src/types/base.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAE1C,YAAY,EAAE,KAAK,EAAE,CAAC;AAEtB,MAAM,MAAM,kBAAkB,GAAG;IAI/B,KAAK,EAAE,KAAK,CAAC;IAKb,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,kBAAkB,GAAG;IAM7D,YAAY,EAAE,MAAM,CAAC;IAErB,WAAW,CAAC,EAAE,KAAK,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG,kBAAkB,GAAG;IAMhE,WAAW,EAAE,MAAM,CAAC;IAKpB,YAAY,CAAC,EAAE,KAAK,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,2BAA2B,GAAG,8BAA8B,CAAC"}
|
|
@@ -1,37 +1,12 @@
|
|
|
1
1
|
export type FetchFlowLogsParams = {
|
|
2
|
-
/** Flow id to pull log events for */
|
|
3
2
|
flowId: string;
|
|
4
|
-
/** The maximum number of events to return. Default 50. */
|
|
5
3
|
limit?: number;
|
|
6
|
-
/**
|
|
7
|
-
* Filter for searching log events
|
|
8
|
-
* @see [Using filter patterns to match terms in space-delimited log events](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/FilterAndPatternSyntax.html#matching-terms-json-log-events) */
|
|
9
4
|
filter?: string;
|
|
10
|
-
/**
|
|
11
|
-
* The start of the time range. Log events with a timestamp before this time are not returned.
|
|
12
|
-
*
|
|
13
|
-
* - `number` - start expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
|
|
14
|
-
* - `Date` - start expressed as instance of Data class.
|
|
15
|
-
* - `'now'` - use current time for a start (With additional gap for convenience, about a minute ago).
|
|
16
|
-
*
|
|
17
|
-
* Default `'now'`.
|
|
18
|
-
*/
|
|
19
5
|
start?: Date | number | 'now';
|
|
20
|
-
/**
|
|
21
|
-
* The end of the time range. Log events with a timestamp later than this time are not returned.
|
|
22
|
-
*
|
|
23
|
-
* - `number` - end expressed as the number of milliseconds after `Jan 1, 1970 00:00:00 UTC`.
|
|
24
|
-
* - `Date` - end expressed as instance of Data class.
|
|
25
|
-
* - `'now'` - use current time for a end.
|
|
26
|
-
*
|
|
27
|
-
* Default `'now'`
|
|
28
|
-
*/
|
|
29
6
|
end?: Date | number | 'now';
|
|
30
|
-
/** If `false` will include original unparsed message as unstructured string. Default true. */
|
|
31
7
|
skipOriginal?: boolean;
|
|
32
8
|
};
|
|
33
9
|
export type FetchFlowLogsChunkParams = FetchFlowLogsParams & {
|
|
34
|
-
/** The token for the next set of events to return. (You received this token from a previous call.) */
|
|
35
10
|
next?: string;
|
|
36
11
|
};
|
|
37
12
|
export type FlowLogEventMessageString = {
|
|
@@ -97,13 +72,10 @@ export type FlowLogEvent = {
|
|
|
97
72
|
timestamp: number;
|
|
98
73
|
};
|
|
99
74
|
export type FlowLogsResponse = {
|
|
100
|
-
/** List of flow log events */
|
|
101
75
|
events: FlowLogEvent[];
|
|
102
|
-
/** Start of time range as UNIX timestamp in milliseconds */
|
|
103
76
|
startTime: number;
|
|
104
77
|
};
|
|
105
78
|
export type FlowLogsChunkResponse = FlowLogsResponse & {
|
|
106
|
-
/** The token for the next set of events to return */
|
|
107
79
|
nextToken?: string;
|
|
108
80
|
};
|
|
109
81
|
//# sourceMappingURL=flow-logs.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"flow-logs.d.ts","sourceRoot":"","sources":["../../../src/types/flow-logs.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,mBAAmB,GAAG;
|
|
1
|
+
{"version":3,"file":"flow-logs.d.ts","sourceRoot":"","sources":["../../../src/types/flow-logs.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/deployer",
|
|
3
|
-
"version": "1.7.4
|
|
3
|
+
"version": "1.7.4",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"dev": "pnpm build:watch:esm"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@or-sdk/base": "^0.44.3
|
|
22
|
-
"@or-sdk/step-templates": "^2.2.4
|
|
21
|
+
"@or-sdk/base": "^0.44.3",
|
|
22
|
+
"@or-sdk/step-templates": "^2.2.4"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"concurrently": "9.0.1",
|
|
@@ -27,5 +27,6 @@
|
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
|
-
}
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "851a468ace01b7f6d853881b1c168ef10aad5442"
|
|
31
32
|
}
|