@sanity/client 7.11.1 → 7.11.2
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/README.md +21 -14
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.d.cts +16 -0
- package/dist/index.browser.d.ts +16 -0
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/stega.browser.d.cts +16 -0
- package/dist/stega.browser.d.ts +16 -0
- package/dist/stega.d.cts +16 -0
- package/dist/stega.d.ts +16 -0
- package/package.json +1 -1
- package/src/types.ts +16 -0
package/dist/index.browser.d.cts
CHANGED
|
@@ -1871,6 +1871,21 @@ export declare type ImageDescriptionOperation = {
|
|
|
1871
1871
|
}
|
|
1872
1872
|
)
|
|
1873
1873
|
|
|
1874
|
+
/** @public */
|
|
1875
|
+
export declare type ImportReleaseAction =
|
|
1876
|
+
| {
|
|
1877
|
+
actionType: 'sanity.action.release.import'
|
|
1878
|
+
attributes: IdentifiedSanityDocumentStub
|
|
1879
|
+
releaseId: string
|
|
1880
|
+
ifExists: 'fail' | 'ignore' | 'replace'
|
|
1881
|
+
}
|
|
1882
|
+
| {
|
|
1883
|
+
actionType: 'sanity.action.release.import'
|
|
1884
|
+
document: IdentifiedSanityDocumentStub
|
|
1885
|
+
releaseId: string
|
|
1886
|
+
ifExists: 'fail' | 'ignore' | 'replace'
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1874
1889
|
/** @public */
|
|
1875
1890
|
export declare interface InitializedClientConfig extends ClientConfig {
|
|
1876
1891
|
apiHost: string
|
|
@@ -4237,6 +4252,7 @@ export declare type ReleaseAction =
|
|
|
4237
4252
|
| ScheduleReleaseAction
|
|
4238
4253
|
| UnscheduleReleaseAction
|
|
4239
4254
|
| DeleteReleaseAction
|
|
4255
|
+
| ImportReleaseAction
|
|
4240
4256
|
|
|
4241
4257
|
/** @public */
|
|
4242
4258
|
export declare type ReleaseCardinality = 'many' | 'one' | undefined
|
package/dist/index.browser.d.ts
CHANGED
|
@@ -1871,6 +1871,21 @@ export declare type ImageDescriptionOperation = {
|
|
|
1871
1871
|
}
|
|
1872
1872
|
)
|
|
1873
1873
|
|
|
1874
|
+
/** @public */
|
|
1875
|
+
export declare type ImportReleaseAction =
|
|
1876
|
+
| {
|
|
1877
|
+
actionType: 'sanity.action.release.import'
|
|
1878
|
+
attributes: IdentifiedSanityDocumentStub
|
|
1879
|
+
releaseId: string
|
|
1880
|
+
ifExists: 'fail' | 'ignore' | 'replace'
|
|
1881
|
+
}
|
|
1882
|
+
| {
|
|
1883
|
+
actionType: 'sanity.action.release.import'
|
|
1884
|
+
document: IdentifiedSanityDocumentStub
|
|
1885
|
+
releaseId: string
|
|
1886
|
+
ifExists: 'fail' | 'ignore' | 'replace'
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1874
1889
|
/** @public */
|
|
1875
1890
|
export declare interface InitializedClientConfig extends ClientConfig {
|
|
1876
1891
|
apiHost: string
|
|
@@ -4237,6 +4252,7 @@ export declare type ReleaseAction =
|
|
|
4237
4252
|
| ScheduleReleaseAction
|
|
4238
4253
|
| UnscheduleReleaseAction
|
|
4239
4254
|
| DeleteReleaseAction
|
|
4255
|
+
| ImportReleaseAction
|
|
4240
4256
|
|
|
4241
4257
|
/** @public */
|
|
4242
4258
|
export declare type ReleaseCardinality = 'many' | 'one' | undefined
|