@alwaysmeticulous/api 2.276.2 → 2.280.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/dist/project.types.d.ts +13 -0
- package/package.json +2 -2
package/dist/project.types.d.ts
CHANGED
|
@@ -10,6 +10,19 @@ export interface Project {
|
|
|
10
10
|
updatedAt: string;
|
|
11
11
|
isGitHubIntegrationActive?: boolean;
|
|
12
12
|
isMonitoringEnabled: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* When `true`, the project gets its source code from customer-uploaded
|
|
15
|
+
* archives (via `meticulous project upload-source`) instead of by
|
|
16
|
+
* `git clone`. Consumers that need source code (e.g. the cloud worker's
|
|
17
|
+
* clone-and-parse step) MUST dispatch on this flag — calling
|
|
18
|
+
* `getRepoUrl` on a `usesSourceCodeUploads` project returns 403, and
|
|
19
|
+
* calling `getSourceArchiveUrl` on a non-`usesSourceCodeUploads` project
|
|
20
|
+
* also returns 403.
|
|
21
|
+
*
|
|
22
|
+
* Optional for backward compatibility with older backends that don't
|
|
23
|
+
* populate it (treat absent as `false`).
|
|
24
|
+
*/
|
|
25
|
+
usesSourceCodeUploads?: boolean;
|
|
13
26
|
settings: {
|
|
14
27
|
networkStubbingMode?: NetworkStubbingMode;
|
|
15
28
|
defaultScreenshottingOptions?: ProjectSettingsScreenshottingOptions;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.280.0",
|
|
4
4
|
"description": "Meticulous API types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "87ca975a232d16ea878caa5649a8b21221ebca02"
|
|
39
39
|
}
|