Skip to content

Commit 64d19e0

Browse files
authored
Sync changes (#141)
2 parents fe3af43 + b51370d commit 64d19e0

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ openfga_sdk/telemetry/counters.py
230230
openfga_sdk/telemetry/histograms.py
231231
openfga_sdk/telemetry/metrics.py
232232
openfga_sdk/telemetry/telemetry.py
233+
openfga_sdk/telemetry/utilities.py
233234
openfga_sdk/validation.py
234235
requirements.txt
235236
setup.cfg
@@ -254,4 +255,5 @@ test/telemetry/counters_test.py
254255
test/telemetry/histograms_test.py
255256
test/telemetry/metrics_test.py
256257
test/telemetry/telemetry_test.py
258+
test/telemetry/utilities_test.py
257259
test/test_open_fga_api.py

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ That repo includes an issue template that will walk through all the places to ch
3333

3434
### Submitting Pull Requests
3535

36-
Considering that the SDKs are autogenerated, please make sure to submit your Pull Requests to the [sdk-generator](https://github.com/openfga/sdk-generator). We will not accept PRs to this repository because they will be overwritten on the next sdk generation.
36+
While we accept Pull Requests on this repository, the SDKs are autogenerated so please consider additionally submitting your Pull Requests to the [sdk-generator](https://github.com/openfga/sdk-generator) and linking the two PRs together and to the corresponding issue. This will greatly assist the OpenFGA team in being able to give timely reviews as well as deploying fixes and updates to our other SDKs as well.
3737

3838
## Getting in touch
3939

@@ -43,4 +43,4 @@ Please do not open issues for general support or usage questions. Instead, join
4343

4444
### Vulnerability Reporting
4545

46-
Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://github.com/openfga/python-sdk/blob/main/.github/SECURITY.md) details the procedure for disclosing security issues.
46+
Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://github.com/openfga/.github/blob/main/SECURITY.md) details the procedure for disclosing security issues.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ If your server is configured with [authentication enabled](https://openfga.dev/d
236236

237237
Get a paginated list of stores.
238238

239-
[API Documentation](https://openfga.dev/api/service/docs/api#/Stores/ListStores)
239+
[API Documentation](https://openfga.dev/api/service#/Stores/ListStores)
240240

241241
```python
242242
# from openfga_sdk.sync import OpenFgaClient
@@ -255,7 +255,7 @@ response = await fga_client.list_stores(options)
255255

256256
Create and initialize a store.
257257

258-
[API Documentation](https://openfga.dev/api/service/docs/api#/Stores/CreateStore)
258+
[API Documentation](https://openfga.dev/api/service#/Stores/CreateStore)
259259

260260
```python
261261
# from openfga_sdk import CreateStoreRequest, OpenFgaClient
@@ -275,7 +275,7 @@ response = await fga_client.create_store(body)
275275

276276
Get information about the current store.
277277

278-
[API Documentation](https://openfga.dev/api/service/docs/api#/Stores/GetStore)
278+
[API Documentation](https://openfga.dev/api/service#/Stores/GetStore)
279279

280280
> Requires a client initialized with a storeId
281281
@@ -294,7 +294,7 @@ response = await fga_client.get_store()
294294

295295
Delete a store.
296296

297-
[API Documentation](https://openfga.dev/api/service/docs/api#/Stores/DeleteStore)
297+
[API Documentation](https://openfga.dev/api/service#/Stores/DeleteStore)
298298

299299
> Requires a client initialized with a storeId
300300
@@ -1154,7 +1154,7 @@ If you have found a bug or if you have a feature request, please report them on
11541154

11551155
### Pull Requests
11561156

1157-
All changes made to this repo will be overwritten on the next generation, so we kindly ask that you send all pull requests related to the SDKs to the [sdk-generator repo](https://github.com/openfga/sdk-generator) instead.
1157+
While we accept Pull Requests on this repository, the SDKs are autogenerated so please consider additionally submitting your Pull Requests to the [sdk-generator](https://github.com/openfga/sdk-generator) and linking the two PRs together and to the corresponding issue. This will greatly assist the OpenFGA team in being able to give timely reviews as well as deploying fixes and updates to our other SDKs as well.
11581158

11591159
## Author
11601160

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.1
1+
0.7.2

0 commit comments

Comments
 (0)