@sprucelabs/spruce-file-utils 18.6.2 → 18.6.3
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.
|
@@ -920,6 +920,48 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
920
920
|
interface SaveLocalSettingsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.SaveLocalSettingsResponsePayloadSchema> {
|
|
921
921
|
}
|
|
922
922
|
}
|
|
923
|
+
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
924
|
+
interface GetSettingsStatusEmitTarget {
|
|
925
|
+
'organizationId': string;
|
|
926
|
+
}
|
|
927
|
+
interface GetSettingsStatusEmitTargetSchema extends SpruceSchema.Schema {
|
|
928
|
+
id: 'getSettingsStatusEmitTarget';
|
|
929
|
+
version: 'v2022_05_13';
|
|
930
|
+
namespace: 'Files';
|
|
931
|
+
name: '';
|
|
932
|
+
fields: {
|
|
933
|
+
/** . */
|
|
934
|
+
'organizationId': {
|
|
935
|
+
type: 'id';
|
|
936
|
+
isRequired: true;
|
|
937
|
+
options: undefined;
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
}
|
|
941
|
+
interface GetSettingsStatusEmitTargetEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetSettingsStatusEmitTargetSchema> {
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
945
|
+
interface GetSettingsStatusResponsePayload {
|
|
946
|
+
'didConfigureFileUploads': boolean;
|
|
947
|
+
}
|
|
948
|
+
interface GetSettingsStatusResponsePayloadSchema extends SpruceSchema.Schema {
|
|
949
|
+
id: 'getSettingsStatusResponsePayload';
|
|
950
|
+
version: 'v2022_05_13';
|
|
951
|
+
namespace: 'Files';
|
|
952
|
+
name: '';
|
|
953
|
+
fields: {
|
|
954
|
+
/** . */
|
|
955
|
+
'didConfigureFileUploads': {
|
|
956
|
+
type: 'boolean';
|
|
957
|
+
isRequired: true;
|
|
958
|
+
options: undefined;
|
|
959
|
+
};
|
|
960
|
+
};
|
|
961
|
+
}
|
|
962
|
+
interface GetSettingsStatusResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetSettingsStatusResponsePayloadSchema> {
|
|
963
|
+
}
|
|
964
|
+
}
|
|
923
965
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
924
966
|
interface SaveSettingsEmitTarget {
|
|
925
967
|
'organizationId': string;
|
|
@@ -1040,45 +1082,25 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1040
1082
|
}
|
|
1041
1083
|
}
|
|
1042
1084
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1043
|
-
interface
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
interface GetSettingsStatusEmitTargetSchema extends SpruceSchema.Schema {
|
|
1047
|
-
id: 'getSettingsStatusEmitTarget';
|
|
1048
|
-
version: 'v2022_05_13';
|
|
1049
|
-
namespace: 'Files';
|
|
1050
|
-
name: '';
|
|
1051
|
-
fields: {
|
|
1052
|
-
/** . */
|
|
1053
|
-
'organizationId': {
|
|
1054
|
-
type: 'id';
|
|
1055
|
-
isRequired: true;
|
|
1056
|
-
options: undefined;
|
|
1057
|
-
};
|
|
1058
|
-
};
|
|
1059
|
-
}
|
|
1060
|
-
interface GetSettingsStatusEmitTargetEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetSettingsStatusEmitTargetSchema> {
|
|
1061
|
-
}
|
|
1062
|
-
}
|
|
1063
|
-
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1064
|
-
interface GetSettingsStatusResponsePayload {
|
|
1065
|
-
'didConfigureFileUploads': boolean;
|
|
1085
|
+
interface GetUploadEndpointResponsePayload {
|
|
1086
|
+
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1087
|
+
'restEndpointUrl'?: string | undefined | null;
|
|
1066
1088
|
}
|
|
1067
|
-
interface
|
|
1068
|
-
id: '
|
|
1089
|
+
interface GetUploadEndpointResponsePayloadSchema extends SpruceSchema.Schema {
|
|
1090
|
+
id: 'getUploadEndpointResponsePayload';
|
|
1069
1091
|
version: 'v2022_05_13';
|
|
1070
1092
|
namespace: 'Files';
|
|
1071
1093
|
name: '';
|
|
1072
1094
|
fields: {
|
|
1073
|
-
/** . */
|
|
1074
|
-
'
|
|
1075
|
-
type: '
|
|
1076
|
-
|
|
1095
|
+
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1096
|
+
'restEndpointUrl': {
|
|
1097
|
+
type: 'text';
|
|
1098
|
+
hint: 'The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client.';
|
|
1077
1099
|
options: undefined;
|
|
1078
1100
|
};
|
|
1079
1101
|
};
|
|
1080
1102
|
}
|
|
1081
|
-
interface
|
|
1103
|
+
interface GetUploadEndpointResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetUploadEndpointResponsePayloadSchema> {
|
|
1082
1104
|
}
|
|
1083
1105
|
}
|
|
1084
1106
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
@@ -1215,28 +1237,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1215
1237
|
interface UploadEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.UploadEmitTargetAndPayloadSchema> {
|
|
1216
1238
|
}
|
|
1217
1239
|
}
|
|
1218
|
-
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1219
|
-
interface GetUploadEndpointResponsePayload {
|
|
1220
|
-
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1221
|
-
'restEndpointUrl'?: string | undefined | null;
|
|
1222
|
-
}
|
|
1223
|
-
interface GetUploadEndpointResponsePayloadSchema extends SpruceSchema.Schema {
|
|
1224
|
-
id: 'getUploadEndpointResponsePayload';
|
|
1225
|
-
version: 'v2022_05_13';
|
|
1226
|
-
namespace: 'Files';
|
|
1227
|
-
name: '';
|
|
1228
|
-
fields: {
|
|
1229
|
-
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1230
|
-
'restEndpointUrl': {
|
|
1231
|
-
type: 'text';
|
|
1232
|
-
hint: 'The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client.';
|
|
1233
|
-
options: undefined;
|
|
1234
|
-
};
|
|
1235
|
-
};
|
|
1236
|
-
}
|
|
1237
|
-
interface GetUploadEndpointResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetUploadEndpointResponsePayloadSchema> {
|
|
1238
|
-
}
|
|
1239
|
-
}
|
|
1240
1240
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1241
1241
|
interface UploadedFile {
|
|
1242
1242
|
'id': string;
|
|
@@ -920,6 +920,48 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
920
920
|
interface SaveLocalSettingsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.SaveLocalSettingsResponsePayloadSchema> {
|
|
921
921
|
}
|
|
922
922
|
}
|
|
923
|
+
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
924
|
+
interface GetSettingsStatusEmitTarget {
|
|
925
|
+
'organizationId': string;
|
|
926
|
+
}
|
|
927
|
+
interface GetSettingsStatusEmitTargetSchema extends SpruceSchema.Schema {
|
|
928
|
+
id: 'getSettingsStatusEmitTarget';
|
|
929
|
+
version: 'v2022_05_13';
|
|
930
|
+
namespace: 'Files';
|
|
931
|
+
name: '';
|
|
932
|
+
fields: {
|
|
933
|
+
/** . */
|
|
934
|
+
'organizationId': {
|
|
935
|
+
type: 'id';
|
|
936
|
+
isRequired: true;
|
|
937
|
+
options: undefined;
|
|
938
|
+
};
|
|
939
|
+
};
|
|
940
|
+
}
|
|
941
|
+
interface GetSettingsStatusEmitTargetEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetSettingsStatusEmitTargetSchema> {
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
945
|
+
interface GetSettingsStatusResponsePayload {
|
|
946
|
+
'didConfigureFileUploads': boolean;
|
|
947
|
+
}
|
|
948
|
+
interface GetSettingsStatusResponsePayloadSchema extends SpruceSchema.Schema {
|
|
949
|
+
id: 'getSettingsStatusResponsePayload';
|
|
950
|
+
version: 'v2022_05_13';
|
|
951
|
+
namespace: 'Files';
|
|
952
|
+
name: '';
|
|
953
|
+
fields: {
|
|
954
|
+
/** . */
|
|
955
|
+
'didConfigureFileUploads': {
|
|
956
|
+
type: 'boolean';
|
|
957
|
+
isRequired: true;
|
|
958
|
+
options: undefined;
|
|
959
|
+
};
|
|
960
|
+
};
|
|
961
|
+
}
|
|
962
|
+
interface GetSettingsStatusResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetSettingsStatusResponsePayloadSchema> {
|
|
963
|
+
}
|
|
964
|
+
}
|
|
923
965
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
924
966
|
interface SaveSettingsEmitTarget {
|
|
925
967
|
'organizationId': string;
|
|
@@ -1040,45 +1082,25 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1040
1082
|
}
|
|
1041
1083
|
}
|
|
1042
1084
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1043
|
-
interface
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
interface GetSettingsStatusEmitTargetSchema extends SpruceSchema.Schema {
|
|
1047
|
-
id: 'getSettingsStatusEmitTarget';
|
|
1048
|
-
version: 'v2022_05_13';
|
|
1049
|
-
namespace: 'Files';
|
|
1050
|
-
name: '';
|
|
1051
|
-
fields: {
|
|
1052
|
-
/** . */
|
|
1053
|
-
'organizationId': {
|
|
1054
|
-
type: 'id';
|
|
1055
|
-
isRequired: true;
|
|
1056
|
-
options: undefined;
|
|
1057
|
-
};
|
|
1058
|
-
};
|
|
1059
|
-
}
|
|
1060
|
-
interface GetSettingsStatusEmitTargetEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetSettingsStatusEmitTargetSchema> {
|
|
1061
|
-
}
|
|
1062
|
-
}
|
|
1063
|
-
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1064
|
-
interface GetSettingsStatusResponsePayload {
|
|
1065
|
-
'didConfigureFileUploads': boolean;
|
|
1085
|
+
interface GetUploadEndpointResponsePayload {
|
|
1086
|
+
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1087
|
+
'restEndpointUrl'?: string | undefined | null;
|
|
1066
1088
|
}
|
|
1067
|
-
interface
|
|
1068
|
-
id: '
|
|
1089
|
+
interface GetUploadEndpointResponsePayloadSchema extends SpruceSchema.Schema {
|
|
1090
|
+
id: 'getUploadEndpointResponsePayload';
|
|
1069
1091
|
version: 'v2022_05_13';
|
|
1070
1092
|
namespace: 'Files';
|
|
1071
1093
|
name: '';
|
|
1072
1094
|
fields: {
|
|
1073
|
-
/** . */
|
|
1074
|
-
'
|
|
1075
|
-
type: '
|
|
1076
|
-
|
|
1095
|
+
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1096
|
+
'restEndpointUrl': {
|
|
1097
|
+
type: 'text';
|
|
1098
|
+
hint: 'The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client.';
|
|
1077
1099
|
options: undefined;
|
|
1078
1100
|
};
|
|
1079
1101
|
};
|
|
1080
1102
|
}
|
|
1081
|
-
interface
|
|
1103
|
+
interface GetUploadEndpointResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetUploadEndpointResponsePayloadSchema> {
|
|
1082
1104
|
}
|
|
1083
1105
|
}
|
|
1084
1106
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
@@ -1215,28 +1237,6 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
|
|
|
1215
1237
|
interface UploadEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.UploadEmitTargetAndPayloadSchema> {
|
|
1216
1238
|
}
|
|
1217
1239
|
}
|
|
1218
|
-
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1219
|
-
interface GetUploadEndpointResponsePayload {
|
|
1220
|
-
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1221
|
-
'restEndpointUrl'?: string | undefined | null;
|
|
1222
|
-
}
|
|
1223
|
-
interface GetUploadEndpointResponsePayloadSchema extends SpruceSchema.Schema {
|
|
1224
|
-
id: 'getUploadEndpointResponsePayload';
|
|
1225
|
-
version: 'v2022_05_13';
|
|
1226
|
-
namespace: 'Files';
|
|
1227
|
-
name: '';
|
|
1228
|
-
fields: {
|
|
1229
|
-
/** . The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client. */
|
|
1230
|
-
'restEndpointUrl': {
|
|
1231
|
-
type: 'text';
|
|
1232
|
-
hint: 'The REST endpoint URL to user when uploading a file. If not set, you must use upload using the Mercury Client.';
|
|
1233
|
-
options: undefined;
|
|
1234
|
-
};
|
|
1235
|
-
};
|
|
1236
|
-
}
|
|
1237
|
-
interface GetUploadEndpointResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Files.v2022_05_13.GetUploadEndpointResponsePayloadSchema> {
|
|
1238
|
-
}
|
|
1239
|
-
}
|
|
1240
1240
|
namespace SpruceSchemas.Files.v2022_05_13 {
|
|
1241
1241
|
interface UploadedFile {
|
|
1242
1242
|
'id': string;
|