diracx-client 0.0.1a45__py3-none-any.whl → 0.0.1a47__py3-none-any.whl

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.
@@ -14,17 +14,17 @@ if TYPE_CHECKING:
14
14
  from ._models import ( # type: ignore
15
15
  BodyAuthGetOidcToken,
16
16
  BodyAuthGetOidcTokenGrantType,
17
+ BodyJobsRescheduleJobs,
18
+ BodyJobsUnassignBulkJobsSandboxes,
17
19
  GroupInfo,
18
20
  HTTPValidationError,
19
21
  HeartbeatData,
20
22
  InitiateDeviceFlowResponse,
21
23
  InsertedJob,
22
24
  JobCommand,
23
- JobSearchParams,
24
- JobSearchParamsSearchItem,
25
+ JobMetaData,
26
+ JobMetaDataAccountedFlag,
25
27
  JobStatusUpdate,
26
- JobSummaryParams,
27
- JobSummaryParamsSearchItem,
28
28
  Metadata,
29
29
  OpenIDConfiguration,
30
30
  SandboxDownloadResponse,
@@ -32,9 +32,13 @@ from ._models import ( # type: ignore
32
32
  SandboxUploadResponse,
33
33
  ScalarSearchSpec,
34
34
  ScalarSearchSpecValue,
35
+ SearchParams,
36
+ SearchParamsSearchItem,
35
37
  SetJobStatusReturn,
36
38
  SetJobStatusReturnSuccess,
37
39
  SortSpec,
40
+ SummaryParams,
41
+ SummaryParamsSearchItem,
38
42
  SupportInfo,
39
43
  TokenResponse,
40
44
  UserInfoResponse,
@@ -61,17 +65,17 @@ from ._patch import patch_sdk as _patch_sdk
61
65
  __all__ = [
62
66
  "BodyAuthGetOidcToken",
63
67
  "BodyAuthGetOidcTokenGrantType",
68
+ "BodyJobsRescheduleJobs",
69
+ "BodyJobsUnassignBulkJobsSandboxes",
64
70
  "GroupInfo",
65
71
  "HTTPValidationError",
66
72
  "HeartbeatData",
67
73
  "InitiateDeviceFlowResponse",
68
74
  "InsertedJob",
69
75
  "JobCommand",
70
- "JobSearchParams",
71
- "JobSearchParamsSearchItem",
76
+ "JobMetaData",
77
+ "JobMetaDataAccountedFlag",
72
78
  "JobStatusUpdate",
73
- "JobSummaryParams",
74
- "JobSummaryParamsSearchItem",
75
79
  "Metadata",
76
80
  "OpenIDConfiguration",
77
81
  "SandboxDownloadResponse",
@@ -79,9 +83,13 @@ __all__ = [
79
83
  "SandboxUploadResponse",
80
84
  "ScalarSearchSpec",
81
85
  "ScalarSearchSpecValue",
86
+ "SearchParams",
87
+ "SearchParamsSearchItem",
82
88
  "SetJobStatusReturn",
83
89
  "SetJobStatusReturnSuccess",
84
90
  "SortSpec",
91
+ "SummaryParams",
92
+ "SummaryParamsSearchItem",
85
93
  "SupportInfo",
86
94
  "TokenResponse",
87
95
  "UserInfoResponse",
@@ -103,6 +111,5 @@ _patch_sdk()
103
111
  if TYPE_CHECKING:
104
112
  __all__.extend(
105
113
  [
106
- "DeviceFlowErrorResponse",
107
- ]
114
+ "DeviceFlowErrorResponse", ]
108
115
  )
@@ -38,6 +38,7 @@ class SandboxFormat(str, Enum, metaclass=CaseInsensitiveEnumMeta):
38
38
  """SandboxFormat."""
39
39
 
40
40
  TAR_BZ2 = "tar.bz2"
41
+ TAR_ZST = "tar.zst"
41
42
 
42
43
 
43
44
  class SandboxType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
@@ -55,6 +56,8 @@ class ScalarSearchOperator(str, Enum, metaclass=CaseInsensitiveEnumMeta):
55
56
  GT = "gt"
56
57
  LT = "lt"
57
58
  LIKE = "like"
59
+ NOT_LIKE = "not like"
60
+ REGEX = "regex"
58
61
 
59
62
 
60
63
  class SortDirection(str, Enum, metaclass=CaseInsensitiveEnumMeta):