rxfoundry.clients.swifty-api 0.1.1013__py3-none-any.whl → 0.1.1015__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.
@@ -2000,7 +2000,7 @@ class PatientApi:
2000
2000
  q: Annotated[Optional[StrictStr], Field(description="Filter patients by query. This takes precedence if set over remaining filters. Searches on first name, last name, date of birth (yyyy-mm-dd), home address and phone numbers in (555) 555-5555 format.")] = None,
2001
2001
  external_id: Annotated[Optional[StrictStr], Field(description="An external id to find the patient by. Format is {slug}:{external_id}. This takes precedence if set over remaining filters, but not used if q is set.")] = None,
2002
2002
  uuid_list: Annotated[Optional[List[StrictStr]], Field(description="A list of uuid strings to filter by. Only used if q and external_id are not set.")] = None,
2003
- is_registered: Annotated[Optional[StrictBool], Field(description="Filter patients by registration status. Defaults to true.")] = None,
2003
+ is_registered: Annotated[Optional[StrictBool], Field(description="Filter patients by registration status. Defaults to not set.")] = None,
2004
2004
  page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
2005
2005
  results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
2006
2006
  expand: Annotated[Optional[List[StrictStr]], Field(description="The list of contained objects to return as well. Defaults to none.")] = None,
@@ -2026,7 +2026,7 @@ class PatientApi:
2026
2026
  :type external_id: str
2027
2027
  :param uuid_list: A list of uuid strings to filter by. Only used if q and external_id are not set.
2028
2028
  :type uuid_list: List[str]
2029
- :param is_registered: Filter patients by registration status. Defaults to true.
2029
+ :param is_registered: Filter patients by registration status. Defaults to not set.
2030
2030
  :type is_registered: bool
2031
2031
  :param page: Page number to return. Defaults to 1.
2032
2032
  :type page: int
@@ -2091,7 +2091,7 @@ class PatientApi:
2091
2091
  q: Annotated[Optional[StrictStr], Field(description="Filter patients by query. This takes precedence if set over remaining filters. Searches on first name, last name, date of birth (yyyy-mm-dd), home address and phone numbers in (555) 555-5555 format.")] = None,
2092
2092
  external_id: Annotated[Optional[StrictStr], Field(description="An external id to find the patient by. Format is {slug}:{external_id}. This takes precedence if set over remaining filters, but not used if q is set.")] = None,
2093
2093
  uuid_list: Annotated[Optional[List[StrictStr]], Field(description="A list of uuid strings to filter by. Only used if q and external_id are not set.")] = None,
2094
- is_registered: Annotated[Optional[StrictBool], Field(description="Filter patients by registration status. Defaults to true.")] = None,
2094
+ is_registered: Annotated[Optional[StrictBool], Field(description="Filter patients by registration status. Defaults to not set.")] = None,
2095
2095
  page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
2096
2096
  results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
2097
2097
  expand: Annotated[Optional[List[StrictStr]], Field(description="The list of contained objects to return as well. Defaults to none.")] = None,
@@ -2117,7 +2117,7 @@ class PatientApi:
2117
2117
  :type external_id: str
2118
2118
  :param uuid_list: A list of uuid strings to filter by. Only used if q and external_id are not set.
2119
2119
  :type uuid_list: List[str]
2120
- :param is_registered: Filter patients by registration status. Defaults to true.
2120
+ :param is_registered: Filter patients by registration status. Defaults to not set.
2121
2121
  :type is_registered: bool
2122
2122
  :param page: Page number to return. Defaults to 1.
2123
2123
  :type page: int
@@ -2182,7 +2182,7 @@ class PatientApi:
2182
2182
  q: Annotated[Optional[StrictStr], Field(description="Filter patients by query. This takes precedence if set over remaining filters. Searches on first name, last name, date of birth (yyyy-mm-dd), home address and phone numbers in (555) 555-5555 format.")] = None,
2183
2183
  external_id: Annotated[Optional[StrictStr], Field(description="An external id to find the patient by. Format is {slug}:{external_id}. This takes precedence if set over remaining filters, but not used if q is set.")] = None,
2184
2184
  uuid_list: Annotated[Optional[List[StrictStr]], Field(description="A list of uuid strings to filter by. Only used if q and external_id are not set.")] = None,
2185
- is_registered: Annotated[Optional[StrictBool], Field(description="Filter patients by registration status. Defaults to true.")] = None,
2185
+ is_registered: Annotated[Optional[StrictBool], Field(description="Filter patients by registration status. Defaults to not set.")] = None,
2186
2186
  page: Annotated[Optional[StrictInt], Field(description="Page number to return. Defaults to 1.")] = None,
2187
2187
  results_per_page: Annotated[Optional[StrictInt], Field(description="Number of results to return per page. Defaults to 10.")] = None,
2188
2188
  expand: Annotated[Optional[List[StrictStr]], Field(description="The list of contained objects to return as well. Defaults to none.")] = None,
@@ -2208,7 +2208,7 @@ class PatientApi:
2208
2208
  :type external_id: str
2209
2209
  :param uuid_list: A list of uuid strings to filter by. Only used if q and external_id are not set.
2210
2210
  :type uuid_list: List[str]
2211
- :param is_registered: Filter patients by registration status. Defaults to true.
2211
+ :param is_registered: Filter patients by registration status. Defaults to not set.
2212
2212
  :type is_registered: bool
2213
2213
  :param page: Page number to return. Defaults to 1.
2214
2214
  :type page: int
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rxfoundry.clients.swifty-api
3
- Version: 0.1.1013
3
+ Version: 0.1.1015
4
4
  Summary: SwiftyRX API
5
5
  Home-page:
6
6
  Author: RxFoundry Team
@@ -13,7 +13,7 @@ rxfoundry/clients/swifty_api/api/code_api.py,sha256=CySSR7Lw05rZzYkzToyrRyt5APcO
13
13
  rxfoundry/clients/swifty_api/api/default_api.py,sha256=kweJa5YpKgugk8niuZrczW3YQ245myNShaJ6gwAUI5M,12251
14
14
  rxfoundry/clients/swifty_api/api/fax_api.py,sha256=p7Uy_YJJ2VI7LA1O0LU6cxSY4CpGuYdFpV9qBdN3Z-M,23514
15
15
  rxfoundry/clients/swifty_api/api/medication_api.py,sha256=uDcAvJ4scGVBxanGYjbXarpZ7esHRmcvhEMobSvA73g,49547
16
- rxfoundry/clients/swifty_api/api/patient_api.py,sha256=ShJk70-hROrSeAAn4hJ6lAzxP5C-popkWot9tVQek54,93844
16
+ rxfoundry/clients/swifty_api/api/patient_api.py,sha256=eKMfzaEr5wqzqusSxA_fzu9U0kEW-RdILb8WNWqMyHU,93862
17
17
  rxfoundry/clients/swifty_api/api/pharmacist_api.py,sha256=6oEqrrIEmBB0i2iDIQKsjJr7fuGiY0J-H_NWIjp1Qvc,24931
18
18
  rxfoundry/clients/swifty_api/api/pharmacy_api.py,sha256=t86xd58lZMZE1x74XKW8C3fwk2UZhFn5ZpJUQ9kR8e8,30623
19
19
  rxfoundry/clients/swifty_api/api/prescriber_api.py,sha256=HeEZCXVJot9e6yprgkfCGjkZWdubbBIWaP86ekB7pXI,25033
@@ -104,7 +104,7 @@ rxfoundry/clients/swifty_api/models/workflow_sub_task_sub_task.py,sha256=0xp-FNZ
104
104
  rxfoundry/clients/swifty_api/models/workflow_task.py,sha256=sEZfS5hgaepJ725yWqOGPMJucc85LaB2Vnmln3K800U,3594
105
105
  rxfoundry/clients/swifty_api/models/workflow_task_task.py,sha256=bdU1NmMhlbBIP_Mz9l_-W1uYj7eiZ2G82dKEOttiq_U,6304
106
106
  rxfoundry/clients/swifty_api/models/workflow_type.py,sha256=RuVz5rEqKktxWbzz7JkPc-Evw86YTh21EX4mgH8IjG4,1596
107
- rxfoundry_clients_swifty_api-0.1.1013.dist-info/METADATA,sha256=ghRa_08MvJdfVYwlEi_x-PcOojWzf_o0OAJ2fud02jM,595
108
- rxfoundry_clients_swifty_api-0.1.1013.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
109
- rxfoundry_clients_swifty_api-0.1.1013.dist-info/top_level.txt,sha256=x7AlWW4imWljpZ91S0V0Pq8YFe0UFn8rBgeIQhJ5q5A,10
110
- rxfoundry_clients_swifty_api-0.1.1013.dist-info/RECORD,,
107
+ rxfoundry_clients_swifty_api-0.1.1015.dist-info/METADATA,sha256=0x70Md5AeoclewYt9DNCEky_A7LFECgVJbnfEZ41EAc,595
108
+ rxfoundry_clients_swifty_api-0.1.1015.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
109
+ rxfoundry_clients_swifty_api-0.1.1015.dist-info/top_level.txt,sha256=x7AlWW4imWljpZ91S0V0Pq8YFe0UFn8rBgeIQhJ5q5A,10
110
+ rxfoundry_clients_swifty_api-0.1.1015.dist-info/RECORD,,