@schemastore/cryproj.54.schema 0.0.4 → 0.0.6
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/LICENSE +1 -1
- package/README.md +22 -6
- package/index.d.ts +59 -43
- package/package.json +5 -5
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Florian
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# Type definitions for cryproj.54.schema
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @schemastore/cryproj.54.schema
|
|
7
|
+
yarn add @schemastore/cryproj.54.schema
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
3
11
|
|
|
4
|
-
# Summary
|
|
5
12
|
This package contains type definitions for cryproj.54.schema.
|
|
6
13
|
|
|
7
|
-
##
|
|
8
|
-
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
import * as cryproj_54_schema from '@schemastore/cryproj.54.schema';
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Note
|
|
21
|
+
|
|
22
|
+
The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
|
|
9
23
|
|
|
10
24
|
## Additional Details
|
|
11
|
-
|
|
25
|
+
|
|
26
|
+
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/cryproj.54.schema)
|
|
27
|
+
* Last updated: Fri, Jun 30, 2023, 21:03:58 GMT
|
|
12
28
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -2470,18 +2470,22 @@ export type VariableName =
|
|
|
2470
2470
|
* The default value of the CVar
|
|
2471
2471
|
*/
|
|
2472
2472
|
export type ValueOfTheCVar = string;
|
|
2473
|
+
export type PropertiesConsoleVariables = PropertiesConsoleVariablesItems[];
|
|
2473
2474
|
/**
|
|
2474
2475
|
* This indicates where the assets are stored
|
|
2475
2476
|
*/
|
|
2476
2477
|
export type AssetsFolder = string;
|
|
2478
|
+
export type PropertiesContentPropertiesAssets = AssetsFolder[];
|
|
2477
2479
|
/**
|
|
2478
2480
|
* This indicates where the code is stored
|
|
2479
2481
|
*/
|
|
2480
2482
|
export type CodeFolder = string;
|
|
2483
|
+
export type PropertiesContentPropertiesCode = CodeFolder[];
|
|
2481
2484
|
export type LibSName = string;
|
|
2482
2485
|
export type LibSNameToImportForAllTheSupportedPlatforms = string;
|
|
2483
2486
|
export type LibSNameToImportForTheWinX64Platform = string;
|
|
2484
2487
|
export type LibSNameToImportForTheWinX86Platform = string;
|
|
2488
|
+
export type PropertiesContentPropertiesLibs = PropertiesContentPropertiesLibsItems[];
|
|
2485
2489
|
/**
|
|
2486
2490
|
* This indicates the project name
|
|
2487
2491
|
*/
|
|
@@ -2500,6 +2504,9 @@ export type PluginName = string;
|
|
|
2500
2504
|
*/
|
|
2501
2505
|
export type PluginType = "EPluginType::Native" | "EPluginType::Managed";
|
|
2502
2506
|
export type ThisPluginWillBeUsedOnlyByThesePlatforms = "pc" | "ps4" | "xboxone" | "linux";
|
|
2507
|
+
export type PropertiesPluginsItemsPropertiesPlatforms = ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2508
|
+
export type PropertiesRequirePropertiesPlugins = PropertiesRequirePropertiesPluginsItems[];
|
|
2509
|
+
export type PropertiesType = string;
|
|
2503
2510
|
export type ProjectVersion = number;
|
|
2504
2511
|
/**
|
|
2505
2512
|
* Console command name
|
|
@@ -2696,49 +2703,58 @@ export type CommandName =
|
|
|
2696
2703
|
* Arguments that has to be passed to the command. Leave empty if it has not parameters
|
|
2697
2704
|
*/
|
|
2698
2705
|
export type ValueOfTheCommand = string;
|
|
2706
|
+
export type PropertiesConsoleCommands = PropertiesConsoleCommandsItems[];
|
|
2699
2707
|
|
|
2700
2708
|
export interface CryProjSchema {
|
|
2701
|
-
console_variables?:
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
content: {
|
|
2707
|
-
assets?: AssetsFolder[];
|
|
2708
|
-
code: CodeFolder[];
|
|
2709
|
-
libs?: {
|
|
2710
|
-
name?: LibSName;
|
|
2711
|
-
shared?: {
|
|
2712
|
-
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2713
|
-
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2714
|
-
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2715
|
-
[k: string]: unknown;
|
|
2716
|
-
};
|
|
2717
|
-
[k: string]: unknown;
|
|
2718
|
-
}[];
|
|
2719
|
-
[k: string]: unknown;
|
|
2720
|
-
};
|
|
2721
|
-
info: {
|
|
2722
|
-
name: ProjectName;
|
|
2723
|
-
guid?: ProjectGUID;
|
|
2724
|
-
[k: string]: unknown;
|
|
2725
|
-
};
|
|
2726
|
-
require: {
|
|
2727
|
-
engine: EngineVersion;
|
|
2728
|
-
plugins?: {
|
|
2729
|
-
path: PluginName;
|
|
2730
|
-
type: PluginType;
|
|
2731
|
-
platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
|
|
2732
|
-
[k: string]: unknown;
|
|
2733
|
-
}[];
|
|
2734
|
-
[k: string]: unknown;
|
|
2735
|
-
};
|
|
2736
|
-
type?: string;
|
|
2709
|
+
console_variables?: PropertiesConsoleVariables;
|
|
2710
|
+
content: PropertiesContent;
|
|
2711
|
+
info: PropertiesInfo;
|
|
2712
|
+
require: PropertiesRequire;
|
|
2713
|
+
type?: PropertiesType;
|
|
2737
2714
|
version: ProjectVersion;
|
|
2738
|
-
console_commands?:
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2715
|
+
console_commands?: PropertiesConsoleCommands;
|
|
2716
|
+
[k: string]: unknown | undefined;
|
|
2717
|
+
}
|
|
2718
|
+
export interface PropertiesConsoleVariablesItems {
|
|
2719
|
+
name: VariableName;
|
|
2720
|
+
value: ValueOfTheCVar;
|
|
2721
|
+
[k: string]: unknown | undefined;
|
|
2722
|
+
}
|
|
2723
|
+
export interface PropertiesContent {
|
|
2724
|
+
assets?: PropertiesContentPropertiesAssets;
|
|
2725
|
+
code: PropertiesContentPropertiesCode;
|
|
2726
|
+
libs?: PropertiesContentPropertiesLibs;
|
|
2727
|
+
[k: string]: unknown | undefined;
|
|
2728
|
+
}
|
|
2729
|
+
export interface PropertiesContentPropertiesLibsItems {
|
|
2730
|
+
name?: LibSName;
|
|
2731
|
+
shared?: PropertiesContentPropertiesLibsItemsPropertiesShared;
|
|
2732
|
+
[k: string]: unknown | undefined;
|
|
2733
|
+
}
|
|
2734
|
+
export interface PropertiesContentPropertiesLibsItemsPropertiesShared {
|
|
2735
|
+
any?: LibSNameToImportForAllTheSupportedPlatforms;
|
|
2736
|
+
win_x64?: LibSNameToImportForTheWinX64Platform;
|
|
2737
|
+
win_x86?: LibSNameToImportForTheWinX86Platform;
|
|
2738
|
+
[k: string]: unknown | undefined;
|
|
2739
|
+
}
|
|
2740
|
+
export interface PropertiesInfo {
|
|
2741
|
+
name: ProjectName;
|
|
2742
|
+
guid?: ProjectGUID;
|
|
2743
|
+
[k: string]: unknown | undefined;
|
|
2744
|
+
}
|
|
2745
|
+
export interface PropertiesRequire {
|
|
2746
|
+
engine: EngineVersion;
|
|
2747
|
+
plugins?: PropertiesRequirePropertiesPlugins;
|
|
2748
|
+
[k: string]: unknown | undefined;
|
|
2749
|
+
}
|
|
2750
|
+
export interface PropertiesRequirePropertiesPluginsItems {
|
|
2751
|
+
path: PluginName;
|
|
2752
|
+
type: PluginType;
|
|
2753
|
+
platforms?: PropertiesPluginsItemsPropertiesPlatforms;
|
|
2754
|
+
[k: string]: unknown | undefined;
|
|
2755
|
+
}
|
|
2756
|
+
export interface PropertiesConsoleCommandsItems {
|
|
2757
|
+
name: CommandName;
|
|
2758
|
+
value: ValueOfTheCommand;
|
|
2759
|
+
[k: string]: unknown | undefined;
|
|
2744
2760
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for cryproj.54.schema.",
|
|
5
5
|
"license": "MIT",
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/cryproj.54.schema",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.54.schema",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"
|
|
10
|
+
"typeScriptVersion": "2.2",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
}
|
|
12
|
+
"typesPublisherContentHash": "0561ddcb2d6521576f4aac9c948800a528190fbe81726b7893952833f5b466cd",
|
|
13
|
+
"version": "0.0.6"
|
|
14
|
+
}
|