@nxtedition/types 23.0.6 → 23.0.8
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/domains/media.d.ts +2 -0
- package/dist/domains/publish.d.ts +10 -0
- package/dist/domains/publish.js +85 -0
- package/dist/index.js +15 -12
- package/dist/schema.json +22 -0
- package/package.json +4 -3
package/dist/domains/media.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export interface MediaDomainRecords {
|
|
|
9
9
|
":media.font": MediaFontRecord;
|
|
10
10
|
":media.restrictions?": MediaRestrictionsRecord;
|
|
11
11
|
":media.probe?": MediaProbeRecord;
|
|
12
|
+
":media.updateSubtitles?": Record<string, unknown>;
|
|
13
|
+
":media.updateGraphics?": Record<string, unknown>;
|
|
12
14
|
}
|
|
13
15
|
export interface MediaSourceRecord {
|
|
14
16
|
input?: {
|
|
@@ -7,6 +7,7 @@ export interface PublishDomainRecords {
|
|
|
7
7
|
rpcId: string;
|
|
8
8
|
rpcData: Record<string, unknown>;
|
|
9
9
|
}>;
|
|
10
|
+
[":publish.accepts"]: PublishDomainAcceptsProvidedRecord;
|
|
10
11
|
}
|
|
11
12
|
export type PublishRecord = YoutubePublishRecord | FacebookPublishRecord | FilePublishRecord;
|
|
12
13
|
export declare const isPublishRecord: (input: unknown) => input is PublishRecord;
|
|
@@ -205,4 +206,13 @@ export declare const randomFilePublishDefaults: () => FilePublishDefaults;
|
|
|
205
206
|
export declare const assertGuardFilePublishDefaults: __AssertionGuard<FilePublishDefaults>;
|
|
206
207
|
export declare const stringifyFilePublishDefaults: (input: FilePublishDefaults) => string;
|
|
207
208
|
export declare const assertStringifyFilePublishDefaults: (input: unknown) => string;
|
|
209
|
+
export interface PublishDomainAcceptsProvidedRecord {
|
|
210
|
+
value?: unknown;
|
|
211
|
+
}
|
|
212
|
+
export declare const isPublishDomainAcceptsProvidedRecord: (input: unknown) => input is PublishDomainAcceptsProvidedRecord;
|
|
213
|
+
export declare const assertPublishDomainAcceptsProvidedRecord: (input: unknown) => PublishDomainAcceptsProvidedRecord;
|
|
214
|
+
export declare const randomPublishDomainAcceptsProvidedRecord: () => PublishDomainAcceptsProvidedRecord;
|
|
215
|
+
export declare const assertGuardPublishDomainAcceptsProvidedRecord: __AssertionGuard<PublishDomainAcceptsProvidedRecord>;
|
|
216
|
+
export declare const stringifyPublishDomainAcceptsProvidedRecord: (input: PublishDomainAcceptsProvidedRecord) => string;
|
|
217
|
+
export declare const assertStringifyPublishDomainAcceptsProvidedRecord: (input: unknown) => string;
|
|
208
218
|
export {};
|
package/dist/domains/publish.js
CHANGED
|
@@ -9895,3 +9895,88 @@ export const assertStringifyFilePublishDefaults = (input, errorFactory) => { con
|
|
|
9895
9895
|
})() : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.type ? "" : `"type":${undefined !== input.type ? $string(input.type) : undefined},`}${undefined === input.profile || "function" === typeof input.profile ? "" : `"profile":${undefined !== input.profile ? JSON.stringify(input.profile) : undefined},`}${undefined === input.scene ? "" : `"scene":${undefined !== input.scene ? $string(input.scene) : undefined}`}`)}}`;
|
|
9896
9896
|
return $so0(input);
|
|
9897
9897
|
}; return stringify(assert(input, errorFactory)); };
|
|
9898
|
+
export const isPublishDomainAcceptsProvidedRecord = input => {
|
|
9899
|
+
const $io0 = input => true;
|
|
9900
|
+
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
9901
|
+
};
|
|
9902
|
+
export const assertPublishDomainAcceptsProvidedRecord = (input, errorFactory) => {
|
|
9903
|
+
const __is = input => {
|
|
9904
|
+
const $io0 = input => true;
|
|
9905
|
+
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
9906
|
+
};
|
|
9907
|
+
if (false === __is(input))
|
|
9908
|
+
((input, _path, _exceptionable = true) => {
|
|
9909
|
+
const $guard = __typia.createAssert.guard;
|
|
9910
|
+
const $ao0 = (input, _path, _exceptionable = true) => true;
|
|
9911
|
+
return ("object" === typeof input && null !== input && false === Array.isArray(input) || $guard(true, {
|
|
9912
|
+
path: _path + "",
|
|
9913
|
+
expected: "PublishDomainAcceptsProvidedRecord",
|
|
9914
|
+
value: input
|
|
9915
|
+
}, errorFactory)) && $ao0(input, _path + "", true) || $guard(true, {
|
|
9916
|
+
path: _path + "",
|
|
9917
|
+
expected: "PublishDomainAcceptsProvidedRecord",
|
|
9918
|
+
value: input
|
|
9919
|
+
}, errorFactory);
|
|
9920
|
+
})(input, "$input", true);
|
|
9921
|
+
return input;
|
|
9922
|
+
};
|
|
9923
|
+
export const randomPublishDomainAcceptsProvidedRecord = generator => {
|
|
9924
|
+
const $pick = __typia.createRandom.pick;
|
|
9925
|
+
const $ro0 = (_recursive = false, _depth = 0) => ({
|
|
9926
|
+
value: $pick([
|
|
9927
|
+
() => "any type used...",
|
|
9928
|
+
() => undefined
|
|
9929
|
+
])()
|
|
9930
|
+
});
|
|
9931
|
+
return $ro0();
|
|
9932
|
+
};
|
|
9933
|
+
export const assertGuardPublishDomainAcceptsProvidedRecord = (input, errorFactory) => {
|
|
9934
|
+
const __is = input => {
|
|
9935
|
+
const $io0 = input => true;
|
|
9936
|
+
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
9937
|
+
};
|
|
9938
|
+
if (false === __is(input))
|
|
9939
|
+
((input, _path, _exceptionable = true) => {
|
|
9940
|
+
const $guard = __typia.createAssertGuard.guard;
|
|
9941
|
+
const $ao0 = (input, _path, _exceptionable = true) => true;
|
|
9942
|
+
return ("object" === typeof input && null !== input && false === Array.isArray(input) || $guard(true, {
|
|
9943
|
+
path: _path + "",
|
|
9944
|
+
expected: "PublishDomainAcceptsProvidedRecord",
|
|
9945
|
+
value: input
|
|
9946
|
+
}, errorFactory)) && $ao0(input, _path + "", true) || $guard(true, {
|
|
9947
|
+
path: _path + "",
|
|
9948
|
+
expected: "PublishDomainAcceptsProvidedRecord",
|
|
9949
|
+
value: input
|
|
9950
|
+
}, errorFactory);
|
|
9951
|
+
})(input, "$input", true);
|
|
9952
|
+
};
|
|
9953
|
+
export const stringifyPublishDomainAcceptsProvidedRecord = input => {
|
|
9954
|
+
const $tail = __typia.json.createStringify.tail;
|
|
9955
|
+
const $so0 = input => `{${$tail(`${undefined === input.value || "function" === typeof input.value ? "" : `"value":${undefined !== input.value ? JSON.stringify(input.value) : undefined}`}`)}}`;
|
|
9956
|
+
return $so0(input);
|
|
9957
|
+
};
|
|
9958
|
+
export const assertStringifyPublishDomainAcceptsProvidedRecord = (input, errorFactory) => { const assert = (input, errorFactory) => {
|
|
9959
|
+
const __is = input => {
|
|
9960
|
+
const $io0 = input => true;
|
|
9961
|
+
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
9962
|
+
};
|
|
9963
|
+
if (false === __is(input))
|
|
9964
|
+
((input, _path, _exceptionable = true) => {
|
|
9965
|
+
const $guard = __typia.json.createAssertStringify.guard;
|
|
9966
|
+
const $ao0 = (input, _path, _exceptionable = true) => true;
|
|
9967
|
+
return ("object" === typeof input && null !== input && false === Array.isArray(input) || $guard(true, {
|
|
9968
|
+
path: _path + "",
|
|
9969
|
+
expected: "PublishDomainAcceptsProvidedRecord",
|
|
9970
|
+
value: input
|
|
9971
|
+
}, errorFactory)) && $ao0(input, _path + "", true) || $guard(true, {
|
|
9972
|
+
path: _path + "",
|
|
9973
|
+
expected: "PublishDomainAcceptsProvidedRecord",
|
|
9974
|
+
value: input
|
|
9975
|
+
}, errorFactory);
|
|
9976
|
+
})(input, "$input", true);
|
|
9977
|
+
return input;
|
|
9978
|
+
}; const stringify = input => {
|
|
9979
|
+
const $tail = __typia.json.createAssertStringify.tail;
|
|
9980
|
+
const $so0 = input => `{${$tail(`${undefined === input.value || "function" === typeof input.value ? "" : `"value":${undefined !== input.value ? JSON.stringify(input.value) : undefined}`}`)}}`;
|
|
9981
|
+
return $so0(input);
|
|
9982
|
+
}; return stringify(assert(input, errorFactory)); };
|
package/dist/index.js
CHANGED
|
@@ -5,21 +5,21 @@ export * from './app.js';
|
|
|
5
5
|
export * from './rpc.js';
|
|
6
6
|
export * from './asset.js';
|
|
7
7
|
export const isDomains = input => {
|
|
8
|
-
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
8
|
+
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":publish.accepts", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":media.updateSubtitles?", ":media.updateGraphics?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
9
9
|
return true === $iv1.has(input);
|
|
10
10
|
};
|
|
11
11
|
export const assertDomains = (input, errorFactory) => {
|
|
12
12
|
const __is = input => {
|
|
13
|
-
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
13
|
+
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":publish.accepts", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":media.updateSubtitles?", ":media.updateGraphics?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
14
14
|
return true === $iv1.has(input);
|
|
15
15
|
};
|
|
16
16
|
if (false === __is(input))
|
|
17
17
|
((input, _path, _exceptionable = true) => {
|
|
18
18
|
const $guard = __typia.createAssert.guard;
|
|
19
|
-
const $av1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
19
|
+
const $av1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":publish.accepts", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":media.updateSubtitles?", ":media.updateGraphics?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
20
20
|
return true === $av1.has(input) || $guard(true, {
|
|
21
21
|
path: _path + "",
|
|
22
|
-
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
22
|
+
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":media.updateGraphics?\" | \":media.updateSubtitles?\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.accepts\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
23
23
|
value: input
|
|
24
24
|
}, errorFactory);
|
|
25
25
|
})(input, "$input", true);
|
|
@@ -36,6 +36,7 @@ export const randomDomains = generator => {
|
|
|
36
36
|
() => ":publish",
|
|
37
37
|
() => ":publish.stats?",
|
|
38
38
|
() => ":publish.methods?",
|
|
39
|
+
() => ":publish.accepts",
|
|
39
40
|
() => ":published",
|
|
40
41
|
() => ":asset.title?",
|
|
41
42
|
() => ":asset.types?",
|
|
@@ -74,6 +75,8 @@ export const randomDomains = generator => {
|
|
|
74
75
|
() => ":media.font",
|
|
75
76
|
() => ":media.restrictions?",
|
|
76
77
|
() => ":media.probe?",
|
|
78
|
+
() => ":media.updateSubtitles?",
|
|
79
|
+
() => ":media.updateGraphics?",
|
|
77
80
|
() => ":permission?",
|
|
78
81
|
() => ":permission",
|
|
79
82
|
() => ":pipeline-preset",
|
|
@@ -96,16 +99,16 @@ export const randomDomains = generator => {
|
|
|
96
99
|
};
|
|
97
100
|
export const assertGuardDomains = (input, errorFactory) => {
|
|
98
101
|
const __is = input => {
|
|
99
|
-
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
102
|
+
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":publish.accepts", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":media.updateSubtitles?", ":media.updateGraphics?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
100
103
|
return true === $iv1.has(input);
|
|
101
104
|
};
|
|
102
105
|
if (false === __is(input))
|
|
103
106
|
((input, _path, _exceptionable = true) => {
|
|
104
107
|
const $guard = __typia.createAssertGuard.guard;
|
|
105
|
-
const $av1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
108
|
+
const $av1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":publish.accepts", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":media.updateSubtitles?", ":media.updateGraphics?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
106
109
|
return true === $av1.has(input) || $guard(true, {
|
|
107
110
|
path: _path + "",
|
|
108
|
-
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
111
|
+
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":media.updateGraphics?\" | \":media.updateSubtitles?\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.accepts\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
109
112
|
value: input
|
|
110
113
|
}, errorFactory);
|
|
111
114
|
})(input, "$input", true);
|
|
@@ -119,23 +122,23 @@ export const stringifyDomains = input => {
|
|
|
119
122
|
if ("string" === typeof input)
|
|
120
123
|
return "\"" + input + "\"";
|
|
121
124
|
$throws({
|
|
122
|
-
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
125
|
+
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":media.updateGraphics?\" | \":media.updateSubtitles?\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.accepts\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
123
126
|
value: input
|
|
124
127
|
});
|
|
125
128
|
})();
|
|
126
129
|
};
|
|
127
130
|
export const assertStringifyDomains = (input, errorFactory) => { const assert = (input, errorFactory) => {
|
|
128
131
|
const __is = input => {
|
|
129
|
-
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
132
|
+
const $iv1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":publish.accepts", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":media.updateSubtitles?", ":media.updateGraphics?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
130
133
|
return true === $iv1.has(input);
|
|
131
134
|
};
|
|
132
135
|
if (false === __is(input))
|
|
133
136
|
((input, _path, _exceptionable = true) => {
|
|
134
137
|
const $guard = __typia.json.createAssertStringify.guard;
|
|
135
|
-
const $av1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
138
|
+
const $av1 = new Set([":bundle", ":bundle.revisions", ":connection", ":connection.methods?", ":connection.stats?", ":publish", ":publish.stats?", ":publish.methods?", ":publish.accepts", ":published", ":asset.title?", ":asset.types?", ":asset.assignees?", ":asset.refs?", ":asset.tags?", ":asset.fileRefs?", ":asset.created?", ":asset.modified?", ":asset.status?", ":asset.icon?", ":asset.deadlines?", ":asset.publish?", ":asset.published?", ":asset.duration?", ":asset.locations?", ":asset.controllers?", ":asset.embedding?", ":asset.media?", ":clone", ":contact", ":event", ":event._template?", ":file.replicate", ":file.restrictions", ":general.title", ":general.tags", ":general.created", ":general.poster", ":general.status", ":general.description", ":media.source", ":media.consolidate", ":media.renders?", ":media.transcriptChanges", ":media.font", ":media.restrictions?", ":media.probe?", ":media.updateSubtitles?", ":media.updateGraphics?", ":permission?", ":permission", ":pipeline-preset", ":pipeline", ":pipeline.items", ":planning", ":planning.assignees", ":planning.deadline", ":render-preset", ":revs?", ":role.tags", ":script.children", ":search", ":settings", ":storyboard", ":storyboard.pipelines", ":template", ":user"]);
|
|
136
139
|
return true === $av1.has(input) || $guard(true, {
|
|
137
140
|
path: _path + "",
|
|
138
|
-
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
141
|
+
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":media.updateGraphics?\" | \":media.updateSubtitles?\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.accepts\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
139
142
|
value: input
|
|
140
143
|
}, errorFactory);
|
|
141
144
|
})(input, "$input", true);
|
|
@@ -149,7 +152,7 @@ export const assertStringifyDomains = (input, errorFactory) => { const assert =
|
|
|
149
152
|
if ("string" === typeof input)
|
|
150
153
|
return "\"" + input + "\"";
|
|
151
154
|
$throws({
|
|
152
|
-
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
155
|
+
expected: "(\":asset.assignees?\" | \":asset.controllers?\" | \":asset.created?\" | \":asset.deadlines?\" | \":asset.duration?\" | \":asset.embedding?\" | \":asset.fileRefs?\" | \":asset.icon?\" | \":asset.locations?\" | \":asset.media?\" | \":asset.modified?\" | \":asset.publish?\" | \":asset.published?\" | \":asset.refs?\" | \":asset.status?\" | \":asset.tags?\" | \":asset.title?\" | \":asset.types?\" | \":bundle\" | \":bundle.revisions\" | \":clone\" | \":connection\" | \":connection.methods?\" | \":connection.stats?\" | \":contact\" | \":event\" | \":event._template?\" | \":file.replicate\" | \":file.restrictions\" | \":general.created\" | \":general.description\" | \":general.poster\" | \":general.status\" | \":general.tags\" | \":general.title\" | \":media.consolidate\" | \":media.font\" | \":media.probe?\" | \":media.renders?\" | \":media.restrictions?\" | \":media.source\" | \":media.transcriptChanges\" | \":media.updateGraphics?\" | \":media.updateSubtitles?\" | \":permission\" | \":permission?\" | \":pipeline\" | \":pipeline-preset\" | \":pipeline.items\" | \":planning\" | \":planning.assignees\" | \":planning.deadline\" | \":publish\" | \":publish.accepts\" | \":publish.methods?\" | \":publish.stats?\" | \":published\" | \":render-preset\" | \":revs?\" | \":role.tags\" | \":script.children\" | \":search\" | \":settings\" | \":storyboard\" | \":storyboard.pipelines\" | \":template\" | \":user\")",
|
|
153
156
|
value: input
|
|
154
157
|
});
|
|
155
158
|
})();
|
package/dist/schema.json
CHANGED
|
@@ -882,6 +882,12 @@
|
|
|
882
882
|
},
|
|
883
883
|
"type": "object"
|
|
884
884
|
},
|
|
885
|
+
":media.updateGraphics?": {
|
|
886
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
887
|
+
},
|
|
888
|
+
":media.updateSubtitles?": {
|
|
889
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
890
|
+
},
|
|
885
891
|
":permission": {
|
|
886
892
|
"$ref": "#/definitions/PermissionRecordPermisson"
|
|
887
893
|
},
|
|
@@ -909,6 +915,9 @@
|
|
|
909
915
|
":publish": {
|
|
910
916
|
"$ref": "#/definitions/PublishRecord"
|
|
911
917
|
},
|
|
918
|
+
":publish.accepts": {
|
|
919
|
+
"$ref": "#/definitions/PublishDomainAcceptsProvidedRecord"
|
|
920
|
+
},
|
|
912
921
|
":publish.methods?": {
|
|
913
922
|
"$ref": "#/definitions/Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>"
|
|
914
923
|
},
|
|
@@ -993,6 +1002,8 @@
|
|
|
993
1002
|
":media.restrictions?",
|
|
994
1003
|
":media.source",
|
|
995
1004
|
":media.transcriptChanges",
|
|
1005
|
+
":media.updateGraphics?",
|
|
1006
|
+
":media.updateSubtitles?",
|
|
996
1007
|
":permission",
|
|
997
1008
|
":permission?",
|
|
998
1009
|
":pipeline",
|
|
@@ -1002,6 +1013,7 @@
|
|
|
1002
1013
|
":planning.assignees",
|
|
1003
1014
|
":planning.deadline",
|
|
1004
1015
|
":publish",
|
|
1016
|
+
":publish.accepts",
|
|
1005
1017
|
":publish.methods?",
|
|
1006
1018
|
":publish.stats?",
|
|
1007
1019
|
":published",
|
|
@@ -1077,6 +1089,8 @@
|
|
|
1077
1089
|
":media.restrictions?",
|
|
1078
1090
|
":media.source",
|
|
1079
1091
|
":media.transcriptChanges",
|
|
1092
|
+
":media.updateGraphics?",
|
|
1093
|
+
":media.updateSubtitles?",
|
|
1080
1094
|
":permission",
|
|
1081
1095
|
":permission?",
|
|
1082
1096
|
":pipeline",
|
|
@@ -1086,6 +1100,7 @@
|
|
|
1086
1100
|
":planning.assignees",
|
|
1087
1101
|
":planning.deadline",
|
|
1088
1102
|
":publish",
|
|
1103
|
+
":publish.accepts",
|
|
1089
1104
|
":publish.methods?",
|
|
1090
1105
|
":publish.stats?",
|
|
1091
1106
|
":published",
|
|
@@ -3227,6 +3242,13 @@
|
|
|
3227
3242
|
],
|
|
3228
3243
|
"type": "object"
|
|
3229
3244
|
},
|
|
3245
|
+
"PublishDomainAcceptsProvidedRecord": {
|
|
3246
|
+
"additionalProperties": false,
|
|
3247
|
+
"properties": {
|
|
3248
|
+
"value": {}
|
|
3249
|
+
},
|
|
3250
|
+
"type": "object"
|
|
3251
|
+
},
|
|
3230
3252
|
"PublishRecord": {
|
|
3231
3253
|
"anyOf": [
|
|
3232
3254
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nxtedition/types",
|
|
3
|
-
"version": "23.0.
|
|
3
|
+
"version": "23.0.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"generate-schema": "typescript-json-schema \"dist/**/*.d.ts\" \"*\" --out dist/schema.json --noExtraProps --required",
|
|
12
12
|
"lint": "npx eslint ./src",
|
|
13
13
|
"prepublishOnly": "yarn lint && yarn build && yarn test",
|
|
14
|
-
"test": "node --test
|
|
15
|
-
"benchmark": "node ./
|
|
14
|
+
"test": "tspc && node --test",
|
|
15
|
+
"benchmark": "tspc && node ./test/benchmark.mjs"
|
|
16
16
|
},
|
|
17
17
|
"exports": {
|
|
18
18
|
".": "./dist/index.js",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"typia": "^6.5.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
+
"@nxtedition/types": "^23.0.7",
|
|
32
33
|
"fast-json-stringify": "^6.0.0",
|
|
33
34
|
"mitata": "^0.1.11",
|
|
34
35
|
"rimraf": "^5.0.8",
|