@opengeni/contracts 2.13.0-canary.3 → 2.13.0-canary.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/dist/artifacts.d.ts +1 -0
- package/dist/atlassian.js +1 -1
- package/dist/{chunk-UBMKQZJE.js → chunk-DVWNHQL5.js} +4 -2
- package/dist/{chunk-UBMKQZJE.js.map → chunk-DVWNHQL5.js.map} +1 -1
- package/dist/connection-authority.js +1 -1
- package/dist/google-drive.js +1 -1
- package/dist/index.js +1 -1
- package/dist/personal-github.js +1 -1
- package/package.json +1 -1
- package/src/artifacts.ts +2 -0
package/dist/artifacts.d.ts
CHANGED
|
@@ -133,6 +133,7 @@ export declare const WorkspaceArtifactListQuery: z.ZodObject<{
|
|
|
133
133
|
active: "active";
|
|
134
134
|
archived: "archived";
|
|
135
135
|
}>>;
|
|
136
|
+
sourceSessionId: z.ZodOptional<z.ZodString>;
|
|
136
137
|
}, z.core.$strip>;
|
|
137
138
|
export type WorkspaceArtifactListQuery = z.infer<typeof WorkspaceArtifactListQuery>;
|
|
138
139
|
export declare const WorkspaceArtifactListResponse: z.ZodObject<{
|
package/dist/atlassian.js
CHANGED
|
@@ -5043,7 +5043,9 @@ var WorkspaceArtifactEvent = z17.object({
|
|
|
5043
5043
|
var WorkspaceArtifactListQuery = z17.object({
|
|
5044
5044
|
limit: z17.coerce.number().int().positive().max(WORKSPACE_ARTIFACT_LIST_MAX).default(WORKSPACE_ARTIFACT_LIST_DEFAULT),
|
|
5045
5045
|
cursor: z17.string().min(1).max(WORKSPACE_ARTIFACT_CURSOR_MAX_CHARS).optional(),
|
|
5046
|
-
status: WorkspaceArtifactStatus.optional()
|
|
5046
|
+
status: WorkspaceArtifactStatus.optional(),
|
|
5047
|
+
/** Sites created or published by this session, including older versions. */
|
|
5048
|
+
sourceSessionId: z17.string().uuid().optional()
|
|
5047
5049
|
});
|
|
5048
5050
|
var WorkspaceArtifactListResponse = z17.object({
|
|
5049
5051
|
artifacts: z17.array(WorkspaceArtifact).max(WORKSPACE_ARTIFACT_LIST_MAX),
|
|
@@ -22015,4 +22017,4 @@ export {
|
|
|
22015
22017
|
ClientConfig,
|
|
22016
22018
|
evaluateWorkspaceModelPolicy
|
|
22017
22019
|
};
|
|
22018
|
-
//# sourceMappingURL=chunk-
|
|
22020
|
+
//# sourceMappingURL=chunk-DVWNHQL5.js.map
|