@takeshape/schema 8.189.2 → 8.193.0
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/migration/index.d.ts +1 -0
- package/dist/migration/index.d.ts.map +1 -1
- package/dist/migration/index.js +4 -1
- package/dist/migration/to/v3.18.1.d.ts +5 -0
- package/dist/migration/to/v3.18.1.d.ts.map +1 -0
- package/dist/migration/to/v3.18.1.js +28 -0
- package/dist/project-schema/index.d.ts +4 -1
- package/dist/project-schema/index.d.ts.map +1 -1
- package/dist/project-schema/index.js +20 -3
- package/dist/project-schema/latest.d.ts +1 -2
- package/dist/project-schema/latest.d.ts.map +1 -1
- package/dist/project-schema/migrate.d.ts.map +1 -1
- package/dist/project-schema/migrate.js +4 -0
- package/dist/project-schema/v3.18.1.d.ts +1333 -0
- package/dist/project-schema/v3.18.1.d.ts.map +1 -0
- package/dist/project-schema/v3.18.1.js +5 -0
- package/dist/schema-util.d.ts.map +1 -1
- package/dist/schema-util.js +13 -11
- package/dist/schemas/index.d.ts +2 -2
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +6 -4
- package/dist/schemas/index.ts +4 -2
- package/dist/schemas/project-schema/latest.json +4 -3
- package/dist/schemas/project-schema/v3.18.1.json +2351 -0
- package/dist/schemas/project-schema.json +3 -0
- package/dist/types/types.d.ts +2 -2
- package/dist/types/types.d.ts.map +1 -1
- package/dist/util/has-arg.d.ts +4 -2
- package/dist/util/has-arg.d.ts.map +1 -1
- package/dist/util/has-arg.js +6 -1
- package/es/migration/index.js +3 -1
- package/es/migration/to/v3.18.1.js +16 -0
- package/es/project-schema/index.js +3 -1
- package/es/project-schema/migrate.js +5 -1
- package/es/project-schema/v3.18.1.js +1 -0
- package/es/schema-util.js +11 -9
- package/es/schemas/index.js +4 -3
- package/es/schemas/index.ts +4 -2
- package/es/schemas/project-schema/latest.json +4 -3
- package/es/schemas/project-schema/v3.18.1.json +2351 -0
- package/es/schemas/project-schema.json +3 -0
- package/es/util/has-arg.js +4 -1
- package/examples/latest/betzino.json +2276 -2276
- package/examples/latest/blog-schema.json +44 -44
- package/examples/latest/brewery-schema.json +38 -38
- package/examples/latest/complex-project-schema.json +272 -272
- package/examples/latest/complex-schema.json +1 -1
- package/examples/latest/fabric-ecommerce.json +23 -23
- package/examples/latest/frank-and-fred-schema.json +1616 -1616
- package/examples/latest/klirr-schema.json +1951 -1951
- package/examples/latest/massive-schema.json +428 -428
- package/examples/latest/mill-components-schema.json +200 -200
- package/examples/latest/one-earth.json +613 -613
- package/examples/latest/pet-oneof-array.json +38 -38
- package/examples/latest/post-schema.json +38 -38
- package/examples/latest/pruned-shopify-product-schema.json +8 -8
- package/examples/latest/real-world-schema.json +80 -80
- package/examples/latest/recursive-repeater-schema.json +20 -20
- package/examples/latest/recursive-schema.json +20 -20
- package/examples/latest/rick-and-morty-ast.json +150 -150
- package/examples/latest/rick-and-morty-graphql.json +114 -114
- package/examples/latest/rick-and-morty-rest.json +5 -5
- package/examples/latest/schema-with-repeater-draftjs.json +20 -20
- package/examples/latest/shape-books-v3_2_0.json +122 -122
- package/examples/latest/shape-books.json +122 -122
- package/examples/latest/shopify-lookbook.json +44 -44
- package/examples/latest/shopify-store-with-widget.json +80 -80
- package/examples/latest/stripe-starter-resolved.json +83 -83
- package/examples/latest/user-schema-no-required.json +20 -20
- package/examples/latest/user-schema-with-defaults.json +20 -20
- package/package.json +4 -4
|
@@ -933,906 +933,906 @@
|
|
|
933
933
|
"dataKey": "supersecret",
|
|
934
934
|
"queries": {
|
|
935
935
|
"getPurpose": {
|
|
936
|
-
"
|
|
936
|
+
"args": "TSGetArgs<Purpose>",
|
|
937
937
|
"resolver": {
|
|
938
938
|
"name": "takeshape:get",
|
|
939
939
|
"service": "takeshape:local",
|
|
940
940
|
"shapeName": "Purpose"
|
|
941
941
|
},
|
|
942
|
-
"
|
|
943
|
-
"
|
|
942
|
+
"shape": "Purpose",
|
|
943
|
+
"description": "Get a Purpose by ID"
|
|
944
944
|
},
|
|
945
945
|
"getPurposeList": {
|
|
946
|
-
"
|
|
946
|
+
"args": "TSListArgs<Purpose>",
|
|
947
947
|
"resolver": {
|
|
948
948
|
"name": "takeshape:list",
|
|
949
949
|
"service": "takeshape:local",
|
|
950
950
|
"shapeName": "Purpose"
|
|
951
951
|
},
|
|
952
|
-
"
|
|
953
|
-
"
|
|
952
|
+
"shape": "PaginatedList<Purpose>",
|
|
953
|
+
"description": "Returns a list Purpose in natural order."
|
|
954
954
|
},
|
|
955
955
|
"getMatterType": {
|
|
956
|
-
"
|
|
956
|
+
"args": "TSGetArgs<MatterType>",
|
|
957
957
|
"resolver": {
|
|
958
958
|
"name": "takeshape:get",
|
|
959
959
|
"service": "takeshape:local",
|
|
960
960
|
"shapeName": "MatterType"
|
|
961
961
|
},
|
|
962
|
-
"
|
|
963
|
-
"
|
|
962
|
+
"shape": "MatterType",
|
|
963
|
+
"description": "Get a MatterType by ID"
|
|
964
964
|
},
|
|
965
965
|
"getMatterTypeList": {
|
|
966
|
-
"
|
|
966
|
+
"args": "TSListArgs<MatterType>",
|
|
967
967
|
"resolver": {
|
|
968
968
|
"name": "takeshape:list",
|
|
969
969
|
"service": "takeshape:local",
|
|
970
970
|
"shapeName": "MatterType"
|
|
971
971
|
},
|
|
972
|
-
"
|
|
973
|
-
"
|
|
972
|
+
"shape": "PaginatedList<MatterType>",
|
|
973
|
+
"description": "Returns a list MatterType in natural order."
|
|
974
974
|
},
|
|
975
975
|
"getSolutionRevision2": {
|
|
976
|
-
"
|
|
976
|
+
"args": "TSGetArgs<SolutionRevision2>",
|
|
977
977
|
"resolver": {
|
|
978
978
|
"name": "takeshape:get",
|
|
979
979
|
"service": "takeshape:local",
|
|
980
980
|
"shapeName": "SolutionRevision2"
|
|
981
981
|
},
|
|
982
|
-
"
|
|
983
|
-
"
|
|
982
|
+
"shape": "SolutionRevision2",
|
|
983
|
+
"description": "Get a SolutionRevision2 by ID"
|
|
984
984
|
},
|
|
985
985
|
"getSolutionRevision2List": {
|
|
986
|
-
"
|
|
986
|
+
"args": "TSListArgs<SolutionRevision2>",
|
|
987
987
|
"resolver": {
|
|
988
988
|
"name": "takeshape:list",
|
|
989
989
|
"service": "takeshape:local",
|
|
990
990
|
"shapeName": "SolutionRevision2"
|
|
991
991
|
},
|
|
992
|
-
"
|
|
993
|
-
"
|
|
992
|
+
"shape": "PaginatedList<SolutionRevision2>",
|
|
993
|
+
"description": "Returns a list SolutionRevision2 in natural order."
|
|
994
994
|
},
|
|
995
995
|
"getSolutionRevision1": {
|
|
996
|
-
"
|
|
996
|
+
"args": "TSGetArgs<SolutionRevision1>",
|
|
997
997
|
"resolver": {
|
|
998
998
|
"name": "takeshape:get",
|
|
999
999
|
"service": "takeshape:local",
|
|
1000
1000
|
"shapeName": "SolutionRevision1"
|
|
1001
1001
|
},
|
|
1002
|
-
"
|
|
1003
|
-
"
|
|
1002
|
+
"shape": "SolutionRevision1",
|
|
1003
|
+
"description": "Get a SolutionRevision1 by ID"
|
|
1004
1004
|
},
|
|
1005
1005
|
"getSolutionRevision1List": {
|
|
1006
|
-
"
|
|
1006
|
+
"args": "TSListArgs<SolutionRevision1>",
|
|
1007
1007
|
"resolver": {
|
|
1008
1008
|
"name": "takeshape:list",
|
|
1009
1009
|
"service": "takeshape:local",
|
|
1010
1010
|
"shapeName": "SolutionRevision1"
|
|
1011
1011
|
},
|
|
1012
|
-
"
|
|
1013
|
-
"
|
|
1012
|
+
"shape": "PaginatedList<SolutionRevision1>",
|
|
1013
|
+
"description": "Returns a list SolutionRevision1 in natural order."
|
|
1014
1014
|
},
|
|
1015
1015
|
"getExternalProduct": {
|
|
1016
|
-
"
|
|
1016
|
+
"args": "TSGetArgs<ExternalProduct>",
|
|
1017
1017
|
"resolver": {
|
|
1018
1018
|
"name": "takeshape:get",
|
|
1019
1019
|
"service": "takeshape:local",
|
|
1020
1020
|
"shapeName": "ExternalProduct"
|
|
1021
1021
|
},
|
|
1022
|
-
"
|
|
1023
|
-
"
|
|
1022
|
+
"shape": "ExternalProduct",
|
|
1023
|
+
"description": "Get a ExternalProduct by ID"
|
|
1024
1024
|
},
|
|
1025
1025
|
"getExternalProductList": {
|
|
1026
|
-
"
|
|
1026
|
+
"args": "TSListArgs<ExternalProduct>",
|
|
1027
1027
|
"resolver": {
|
|
1028
1028
|
"name": "takeshape:list",
|
|
1029
1029
|
"service": "takeshape:local",
|
|
1030
1030
|
"shapeName": "ExternalProduct"
|
|
1031
1031
|
},
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1032
|
+
"shape": "PaginatedList<ExternalProduct>",
|
|
1033
|
+
"description": "Returns a list ExternalProduct in natural order."
|
|
1034
1034
|
},
|
|
1035
1035
|
"getVideoType": {
|
|
1036
|
-
"
|
|
1036
|
+
"args": "TSGetArgs<VideoType>",
|
|
1037
1037
|
"resolver": {
|
|
1038
1038
|
"name": "takeshape:get",
|
|
1039
1039
|
"service": "takeshape:local",
|
|
1040
1040
|
"shapeName": "VideoType"
|
|
1041
1041
|
},
|
|
1042
|
-
"
|
|
1043
|
-
"
|
|
1042
|
+
"shape": "VideoType",
|
|
1043
|
+
"description": "Get a VideoType by ID"
|
|
1044
1044
|
},
|
|
1045
1045
|
"getVideoTypeList": {
|
|
1046
|
-
"
|
|
1046
|
+
"args": "TSListArgs<VideoType>",
|
|
1047
1047
|
"resolver": {
|
|
1048
1048
|
"name": "takeshape:list",
|
|
1049
1049
|
"service": "takeshape:local",
|
|
1050
1050
|
"shapeName": "VideoType"
|
|
1051
1051
|
},
|
|
1052
|
-
"
|
|
1053
|
-
"
|
|
1052
|
+
"shape": "PaginatedList<VideoType>",
|
|
1053
|
+
"description": "Returns a list VideoType in natural order."
|
|
1054
1054
|
},
|
|
1055
1055
|
"getCategory": {
|
|
1056
|
-
"
|
|
1056
|
+
"args": "TSGetArgs<Category>",
|
|
1057
1057
|
"resolver": {
|
|
1058
1058
|
"name": "takeshape:get",
|
|
1059
1059
|
"service": "takeshape:local",
|
|
1060
1060
|
"shapeName": "Category"
|
|
1061
1061
|
},
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1062
|
+
"shape": "Category",
|
|
1063
|
+
"description": "Get a Category by ID"
|
|
1064
1064
|
},
|
|
1065
1065
|
"getCategoryList": {
|
|
1066
|
-
"
|
|
1066
|
+
"args": "TSListArgs<Category>",
|
|
1067
1067
|
"resolver": {
|
|
1068
1068
|
"name": "takeshape:list",
|
|
1069
1069
|
"service": "takeshape:local",
|
|
1070
1070
|
"shapeName": "Category"
|
|
1071
1071
|
},
|
|
1072
|
-
"
|
|
1073
|
-
"
|
|
1072
|
+
"shape": "PaginatedList<Category>",
|
|
1073
|
+
"description": "Returns a list Category in natural order."
|
|
1074
1074
|
},
|
|
1075
1075
|
"getCollateralType": {
|
|
1076
|
-
"
|
|
1076
|
+
"args": "TSGetArgs<CollateralType>",
|
|
1077
1077
|
"resolver": {
|
|
1078
1078
|
"name": "takeshape:get",
|
|
1079
1079
|
"service": "takeshape:local",
|
|
1080
1080
|
"shapeName": "CollateralType"
|
|
1081
1081
|
},
|
|
1082
|
-
"
|
|
1083
|
-
"
|
|
1082
|
+
"shape": "CollateralType",
|
|
1083
|
+
"description": "Get a CollateralType by ID"
|
|
1084
1084
|
},
|
|
1085
1085
|
"getCollateralTypeList": {
|
|
1086
|
-
"
|
|
1086
|
+
"args": "TSListArgs<CollateralType>",
|
|
1087
1087
|
"resolver": {
|
|
1088
1088
|
"name": "takeshape:list",
|
|
1089
1089
|
"service": "takeshape:local",
|
|
1090
1090
|
"shapeName": "CollateralType"
|
|
1091
1091
|
},
|
|
1092
|
-
"
|
|
1093
|
-
"
|
|
1092
|
+
"shape": "PaginatedList<CollateralType>",
|
|
1093
|
+
"description": "Returns a list CollateralType in natural order."
|
|
1094
1094
|
},
|
|
1095
1095
|
"getExternalAppCategory": {
|
|
1096
|
-
"
|
|
1096
|
+
"args": "TSGetArgs<ExternalAppCategory>",
|
|
1097
1097
|
"resolver": {
|
|
1098
1098
|
"name": "takeshape:get",
|
|
1099
1099
|
"service": "takeshape:local",
|
|
1100
1100
|
"shapeName": "ExternalAppCategory"
|
|
1101
1101
|
},
|
|
1102
|
-
"
|
|
1103
|
-
"
|
|
1102
|
+
"shape": "ExternalAppCategory",
|
|
1103
|
+
"description": "Get a ExternalAppCategory by ID"
|
|
1104
1104
|
},
|
|
1105
1105
|
"getExternalAppCategoryList": {
|
|
1106
|
-
"
|
|
1106
|
+
"args": "TSListArgs<ExternalAppCategory>",
|
|
1107
1107
|
"resolver": {
|
|
1108
1108
|
"name": "takeshape:list",
|
|
1109
1109
|
"service": "takeshape:local",
|
|
1110
1110
|
"shapeName": "ExternalAppCategory"
|
|
1111
1111
|
},
|
|
1112
|
-
"
|
|
1113
|
-
"
|
|
1112
|
+
"shape": "PaginatedList<ExternalAppCategory>",
|
|
1113
|
+
"description": "Returns a list ExternalAppCategory in natural order."
|
|
1114
1114
|
},
|
|
1115
1115
|
"getVendor": {
|
|
1116
|
-
"
|
|
1116
|
+
"args": "TSGetArgs<Vendor>",
|
|
1117
1117
|
"resolver": {
|
|
1118
1118
|
"name": "takeshape:get",
|
|
1119
1119
|
"service": "takeshape:local",
|
|
1120
1120
|
"shapeName": "Vendor"
|
|
1121
1121
|
},
|
|
1122
|
-
"
|
|
1123
|
-
"
|
|
1122
|
+
"shape": "Vendor",
|
|
1123
|
+
"description": "Get a Vendor by ID"
|
|
1124
1124
|
},
|
|
1125
1125
|
"getVendorList": {
|
|
1126
|
-
"
|
|
1126
|
+
"args": "TSListArgs<Vendor>",
|
|
1127
1127
|
"resolver": {
|
|
1128
1128
|
"name": "takeshape:list",
|
|
1129
1129
|
"service": "takeshape:local",
|
|
1130
1130
|
"shapeName": "Vendor"
|
|
1131
1131
|
},
|
|
1132
|
-
"
|
|
1133
|
-
"
|
|
1132
|
+
"shape": "PaginatedList<Vendor>",
|
|
1133
|
+
"description": "Returns a list Vendor in natural order."
|
|
1134
1134
|
},
|
|
1135
1135
|
"getSolutionRevision": {
|
|
1136
|
-
"
|
|
1136
|
+
"args": "TSGetArgs<SolutionRevision>",
|
|
1137
1137
|
"resolver": {
|
|
1138
1138
|
"name": "takeshape:get",
|
|
1139
1139
|
"service": "takeshape:local",
|
|
1140
1140
|
"shapeName": "SolutionRevision"
|
|
1141
1141
|
},
|
|
1142
|
-
"
|
|
1143
|
-
"
|
|
1142
|
+
"shape": "SolutionRevision",
|
|
1143
|
+
"description": "Get a SolutionRevision by ID"
|
|
1144
1144
|
},
|
|
1145
1145
|
"getSolutionRevisionList": {
|
|
1146
|
-
"
|
|
1146
|
+
"args": "TSListArgs<SolutionRevision>",
|
|
1147
1147
|
"resolver": {
|
|
1148
1148
|
"name": "takeshape:list",
|
|
1149
1149
|
"service": "takeshape:local",
|
|
1150
1150
|
"shapeName": "SolutionRevision"
|
|
1151
1151
|
},
|
|
1152
|
-
"
|
|
1153
|
-
"
|
|
1152
|
+
"shape": "PaginatedList<SolutionRevision>",
|
|
1153
|
+
"description": "Returns a list SolutionRevision in natural order."
|
|
1154
1154
|
},
|
|
1155
1155
|
"getPracticeArea": {
|
|
1156
|
-
"
|
|
1156
|
+
"args": "TSGetArgs<PracticeArea>",
|
|
1157
1157
|
"resolver": {
|
|
1158
1158
|
"name": "takeshape:get",
|
|
1159
1159
|
"service": "takeshape:local",
|
|
1160
1160
|
"shapeName": "PracticeArea"
|
|
1161
1161
|
},
|
|
1162
|
-
"
|
|
1163
|
-
"
|
|
1162
|
+
"shape": "PracticeArea",
|
|
1163
|
+
"description": "Get a PracticeArea by ID"
|
|
1164
1164
|
},
|
|
1165
1165
|
"getPracticeAreaList": {
|
|
1166
|
-
"
|
|
1166
|
+
"args": "TSListArgs<PracticeArea>",
|
|
1167
1167
|
"resolver": {
|
|
1168
1168
|
"name": "takeshape:list",
|
|
1169
1169
|
"service": "takeshape:local",
|
|
1170
1170
|
"shapeName": "PracticeArea"
|
|
1171
1171
|
},
|
|
1172
|
-
"
|
|
1173
|
-
"
|
|
1172
|
+
"shape": "PaginatedList<PracticeArea>",
|
|
1173
|
+
"description": "Returns a list PracticeArea in natural order."
|
|
1174
1174
|
},
|
|
1175
1175
|
"getImageType": {
|
|
1176
|
-
"
|
|
1176
|
+
"args": "TSGetArgs<ImageType>",
|
|
1177
1177
|
"resolver": {
|
|
1178
1178
|
"name": "takeshape:get",
|
|
1179
1179
|
"service": "takeshape:local",
|
|
1180
1180
|
"shapeName": "ImageType"
|
|
1181
1181
|
},
|
|
1182
|
-
"
|
|
1183
|
-
"
|
|
1182
|
+
"shape": "ImageType",
|
|
1183
|
+
"description": "Get a ImageType by ID"
|
|
1184
1184
|
},
|
|
1185
1185
|
"getImageTypeList": {
|
|
1186
|
-
"
|
|
1186
|
+
"args": "TSListArgs<ImageType>",
|
|
1187
1187
|
"resolver": {
|
|
1188
1188
|
"name": "takeshape:list",
|
|
1189
1189
|
"service": "takeshape:local",
|
|
1190
1190
|
"shapeName": "ImageType"
|
|
1191
1191
|
},
|
|
1192
|
-
"
|
|
1193
|
-
"
|
|
1192
|
+
"shape": "PaginatedList<ImageType>",
|
|
1193
|
+
"description": "Returns a list ImageType in natural order."
|
|
1194
1194
|
},
|
|
1195
1195
|
"getTechnology": {
|
|
1196
|
-
"
|
|
1196
|
+
"args": "TSGetArgs<Technology>",
|
|
1197
1197
|
"resolver": {
|
|
1198
1198
|
"name": "takeshape:get",
|
|
1199
1199
|
"service": "takeshape:local",
|
|
1200
1200
|
"shapeName": "Technology"
|
|
1201
1201
|
},
|
|
1202
|
-
"
|
|
1203
|
-
"
|
|
1202
|
+
"shape": "Technology",
|
|
1203
|
+
"description": "Get a Technology by ID"
|
|
1204
1204
|
},
|
|
1205
1205
|
"getTechnologyList": {
|
|
1206
|
-
"
|
|
1206
|
+
"args": "TSListArgs<Technology>",
|
|
1207
1207
|
"resolver": {
|
|
1208
1208
|
"name": "takeshape:list",
|
|
1209
1209
|
"service": "takeshape:local",
|
|
1210
1210
|
"shapeName": "Technology"
|
|
1211
1211
|
},
|
|
1212
|
-
"
|
|
1213
|
-
"
|
|
1212
|
+
"shape": "PaginatedList<Technology>",
|
|
1213
|
+
"description": "Returns a list Technology in natural order."
|
|
1214
1214
|
},
|
|
1215
1215
|
"getSolution": {
|
|
1216
|
-
"
|
|
1216
|
+
"args": "TSGetArgs<Solution>",
|
|
1217
1217
|
"resolver": {
|
|
1218
1218
|
"name": "takeshape:get",
|
|
1219
1219
|
"service": "takeshape:local",
|
|
1220
1220
|
"shapeName": "Solution"
|
|
1221
1221
|
},
|
|
1222
|
-
"
|
|
1223
|
-
"
|
|
1222
|
+
"shape": "Solution",
|
|
1223
|
+
"description": "Get a Solution by ID"
|
|
1224
1224
|
},
|
|
1225
1225
|
"getSolutionList": {
|
|
1226
|
-
"
|
|
1226
|
+
"args": "TSListArgs<Solution>",
|
|
1227
1227
|
"resolver": {
|
|
1228
1228
|
"name": "takeshape:list",
|
|
1229
1229
|
"service": "takeshape:local",
|
|
1230
1230
|
"shapeName": "Solution"
|
|
1231
1231
|
},
|
|
1232
|
-
"
|
|
1233
|
-
"
|
|
1232
|
+
"shape": "PaginatedList<Solution>",
|
|
1233
|
+
"description": "Returns a list Solution in natural order."
|
|
1234
1234
|
}
|
|
1235
1235
|
},
|
|
1236
1236
|
"mutations": {
|
|
1237
1237
|
"updatePurpose": {
|
|
1238
|
-
"
|
|
1238
|
+
"args": "UpdateArgs<Purpose>",
|
|
1239
1239
|
"resolver": {
|
|
1240
1240
|
"name": "takeshape:update",
|
|
1241
1241
|
"service": "takeshape:local",
|
|
1242
1242
|
"shapeName": "Purpose"
|
|
1243
1243
|
},
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1244
|
+
"shape": "UpdateResult<Purpose>",
|
|
1245
|
+
"description": "Update Purpose"
|
|
1246
1246
|
},
|
|
1247
1247
|
"createPurpose": {
|
|
1248
|
-
"
|
|
1248
|
+
"args": "CreateArgs<Purpose>",
|
|
1249
1249
|
"resolver": {
|
|
1250
1250
|
"name": "takeshape:create",
|
|
1251
1251
|
"service": "takeshape:local",
|
|
1252
1252
|
"shapeName": "Purpose"
|
|
1253
1253
|
},
|
|
1254
|
-
"
|
|
1255
|
-
"
|
|
1254
|
+
"shape": "CreateResult<Purpose>",
|
|
1255
|
+
"description": "Create Purpose"
|
|
1256
1256
|
},
|
|
1257
1257
|
"duplicatePurpose": {
|
|
1258
|
-
"
|
|
1258
|
+
"args": "DuplicateArgs<Purpose>",
|
|
1259
1259
|
"resolver": {
|
|
1260
1260
|
"name": "takeshape:duplicate",
|
|
1261
1261
|
"service": "takeshape:local",
|
|
1262
1262
|
"shapeName": "Purpose"
|
|
1263
1263
|
},
|
|
1264
|
-
"
|
|
1265
|
-
"
|
|
1264
|
+
"shape": "DuplicateResult<Purpose>",
|
|
1265
|
+
"description": "Duplicate Purpose"
|
|
1266
1266
|
},
|
|
1267
1267
|
"deletePurpose": {
|
|
1268
|
-
"
|
|
1268
|
+
"args": "DeleteArgs<Purpose>",
|
|
1269
1269
|
"resolver": {
|
|
1270
1270
|
"name": "takeshape:delete",
|
|
1271
1271
|
"service": "takeshape:local",
|
|
1272
1272
|
"shapeName": "Purpose"
|
|
1273
1273
|
},
|
|
1274
|
-
"
|
|
1275
|
-
"
|
|
1274
|
+
"shape": "DeleteResult<Purpose>",
|
|
1275
|
+
"description": "Delete Purpose"
|
|
1276
1276
|
},
|
|
1277
1277
|
"updateMatterType": {
|
|
1278
|
-
"
|
|
1278
|
+
"args": "UpdateArgs<MatterType>",
|
|
1279
1279
|
"resolver": {
|
|
1280
1280
|
"name": "takeshape:update",
|
|
1281
1281
|
"service": "takeshape:local",
|
|
1282
1282
|
"shapeName": "MatterType"
|
|
1283
1283
|
},
|
|
1284
|
-
"
|
|
1285
|
-
"
|
|
1284
|
+
"shape": "UpdateResult<MatterType>",
|
|
1285
|
+
"description": "Update MatterType"
|
|
1286
1286
|
},
|
|
1287
1287
|
"createMatterType": {
|
|
1288
|
-
"
|
|
1288
|
+
"args": "CreateArgs<MatterType>",
|
|
1289
1289
|
"resolver": {
|
|
1290
1290
|
"name": "takeshape:create",
|
|
1291
1291
|
"service": "takeshape:local",
|
|
1292
1292
|
"shapeName": "MatterType"
|
|
1293
1293
|
},
|
|
1294
|
-
"
|
|
1295
|
-
"
|
|
1294
|
+
"shape": "CreateResult<MatterType>",
|
|
1295
|
+
"description": "Create MatterType"
|
|
1296
1296
|
},
|
|
1297
1297
|
"duplicateMatterType": {
|
|
1298
|
-
"
|
|
1298
|
+
"args": "DuplicateArgs<MatterType>",
|
|
1299
1299
|
"resolver": {
|
|
1300
1300
|
"name": "takeshape:duplicate",
|
|
1301
1301
|
"service": "takeshape:local",
|
|
1302
1302
|
"shapeName": "MatterType"
|
|
1303
1303
|
},
|
|
1304
|
-
"
|
|
1305
|
-
"
|
|
1304
|
+
"shape": "DuplicateResult<MatterType>",
|
|
1305
|
+
"description": "Duplicate MatterType"
|
|
1306
1306
|
},
|
|
1307
1307
|
"deleteMatterType": {
|
|
1308
|
-
"
|
|
1308
|
+
"args": "DeleteArgs<MatterType>",
|
|
1309
1309
|
"resolver": {
|
|
1310
1310
|
"name": "takeshape:delete",
|
|
1311
1311
|
"service": "takeshape:local",
|
|
1312
1312
|
"shapeName": "MatterType"
|
|
1313
1313
|
},
|
|
1314
|
-
"
|
|
1315
|
-
"
|
|
1314
|
+
"shape": "DeleteResult<MatterType>",
|
|
1315
|
+
"description": "Delete MatterType"
|
|
1316
1316
|
},
|
|
1317
1317
|
"updateSolutionRevision2": {
|
|
1318
|
-
"
|
|
1318
|
+
"args": "UpdateArgs<SolutionRevision2>",
|
|
1319
1319
|
"resolver": {
|
|
1320
1320
|
"name": "takeshape:update",
|
|
1321
1321
|
"service": "takeshape:local",
|
|
1322
1322
|
"shapeName": "SolutionRevision2"
|
|
1323
1323
|
},
|
|
1324
|
-
"
|
|
1325
|
-
"
|
|
1324
|
+
"shape": "UpdateResult<SolutionRevision2>",
|
|
1325
|
+
"description": "Update SolutionRevision2"
|
|
1326
1326
|
},
|
|
1327
1327
|
"createSolutionRevision2": {
|
|
1328
|
-
"
|
|
1328
|
+
"args": "CreateArgs<SolutionRevision2>",
|
|
1329
1329
|
"resolver": {
|
|
1330
1330
|
"name": "takeshape:create",
|
|
1331
1331
|
"service": "takeshape:local",
|
|
1332
1332
|
"shapeName": "SolutionRevision2"
|
|
1333
1333
|
},
|
|
1334
|
-
"
|
|
1335
|
-
"
|
|
1334
|
+
"shape": "CreateResult<SolutionRevision2>",
|
|
1335
|
+
"description": "Create SolutionRevision2"
|
|
1336
1336
|
},
|
|
1337
1337
|
"duplicateSolutionRevision2": {
|
|
1338
|
-
"
|
|
1338
|
+
"args": "DuplicateArgs<SolutionRevision2>",
|
|
1339
1339
|
"resolver": {
|
|
1340
1340
|
"name": "takeshape:duplicate",
|
|
1341
1341
|
"service": "takeshape:local",
|
|
1342
1342
|
"shapeName": "SolutionRevision2"
|
|
1343
1343
|
},
|
|
1344
|
-
"
|
|
1345
|
-
"
|
|
1344
|
+
"shape": "DuplicateResult<SolutionRevision2>",
|
|
1345
|
+
"description": "Duplicate SolutionRevision2"
|
|
1346
1346
|
},
|
|
1347
1347
|
"deleteSolutionRevision2": {
|
|
1348
|
-
"
|
|
1348
|
+
"args": "DeleteArgs<SolutionRevision2>",
|
|
1349
1349
|
"resolver": {
|
|
1350
1350
|
"name": "takeshape:delete",
|
|
1351
1351
|
"service": "takeshape:local",
|
|
1352
1352
|
"shapeName": "SolutionRevision2"
|
|
1353
1353
|
},
|
|
1354
|
-
"
|
|
1355
|
-
"
|
|
1354
|
+
"shape": "DeleteResult<SolutionRevision2>",
|
|
1355
|
+
"description": "Delete SolutionRevision2"
|
|
1356
1356
|
},
|
|
1357
1357
|
"updateSolutionRevision1": {
|
|
1358
|
-
"
|
|
1358
|
+
"args": "UpdateArgs<SolutionRevision1>",
|
|
1359
1359
|
"resolver": {
|
|
1360
1360
|
"name": "takeshape:update",
|
|
1361
1361
|
"service": "takeshape:local",
|
|
1362
1362
|
"shapeName": "SolutionRevision1"
|
|
1363
1363
|
},
|
|
1364
|
-
"
|
|
1365
|
-
"
|
|
1364
|
+
"shape": "UpdateResult<SolutionRevision1>",
|
|
1365
|
+
"description": "Update SolutionRevision1"
|
|
1366
1366
|
},
|
|
1367
1367
|
"createSolutionRevision1": {
|
|
1368
|
-
"
|
|
1368
|
+
"args": "CreateArgs<SolutionRevision1>",
|
|
1369
1369
|
"resolver": {
|
|
1370
1370
|
"name": "takeshape:create",
|
|
1371
1371
|
"service": "takeshape:local",
|
|
1372
1372
|
"shapeName": "SolutionRevision1"
|
|
1373
1373
|
},
|
|
1374
|
-
"
|
|
1375
|
-
"
|
|
1374
|
+
"shape": "CreateResult<SolutionRevision1>",
|
|
1375
|
+
"description": "Create SolutionRevision1"
|
|
1376
1376
|
},
|
|
1377
1377
|
"duplicateSolutionRevision1": {
|
|
1378
|
-
"
|
|
1378
|
+
"args": "DuplicateArgs<SolutionRevision1>",
|
|
1379
1379
|
"resolver": {
|
|
1380
1380
|
"name": "takeshape:duplicate",
|
|
1381
1381
|
"service": "takeshape:local",
|
|
1382
1382
|
"shapeName": "SolutionRevision1"
|
|
1383
1383
|
},
|
|
1384
|
-
"
|
|
1385
|
-
"
|
|
1384
|
+
"shape": "DuplicateResult<SolutionRevision1>",
|
|
1385
|
+
"description": "Duplicate SolutionRevision1"
|
|
1386
1386
|
},
|
|
1387
1387
|
"deleteSolutionRevision1": {
|
|
1388
|
-
"
|
|
1388
|
+
"args": "DeleteArgs<SolutionRevision1>",
|
|
1389
1389
|
"resolver": {
|
|
1390
1390
|
"name": "takeshape:delete",
|
|
1391
1391
|
"service": "takeshape:local",
|
|
1392
1392
|
"shapeName": "SolutionRevision1"
|
|
1393
1393
|
},
|
|
1394
|
-
"
|
|
1395
|
-
"
|
|
1394
|
+
"shape": "DeleteResult<SolutionRevision1>",
|
|
1395
|
+
"description": "Delete SolutionRevision1"
|
|
1396
1396
|
},
|
|
1397
1397
|
"updateExternalProduct": {
|
|
1398
|
-
"
|
|
1398
|
+
"args": "UpdateArgs<ExternalProduct>",
|
|
1399
1399
|
"resolver": {
|
|
1400
1400
|
"name": "takeshape:update",
|
|
1401
1401
|
"service": "takeshape:local",
|
|
1402
1402
|
"shapeName": "ExternalProduct"
|
|
1403
1403
|
},
|
|
1404
|
-
"
|
|
1405
|
-
"
|
|
1404
|
+
"shape": "UpdateResult<ExternalProduct>",
|
|
1405
|
+
"description": "Update ExternalProduct"
|
|
1406
1406
|
},
|
|
1407
1407
|
"createExternalProduct": {
|
|
1408
|
-
"
|
|
1408
|
+
"args": "CreateArgs<ExternalProduct>",
|
|
1409
1409
|
"resolver": {
|
|
1410
1410
|
"name": "takeshape:create",
|
|
1411
1411
|
"service": "takeshape:local",
|
|
1412
1412
|
"shapeName": "ExternalProduct"
|
|
1413
1413
|
},
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1414
|
+
"shape": "CreateResult<ExternalProduct>",
|
|
1415
|
+
"description": "Create ExternalProduct"
|
|
1416
1416
|
},
|
|
1417
1417
|
"duplicateExternalProduct": {
|
|
1418
|
-
"
|
|
1418
|
+
"args": "DuplicateArgs<ExternalProduct>",
|
|
1419
1419
|
"resolver": {
|
|
1420
1420
|
"name": "takeshape:duplicate",
|
|
1421
1421
|
"service": "takeshape:local",
|
|
1422
1422
|
"shapeName": "ExternalProduct"
|
|
1423
1423
|
},
|
|
1424
|
-
"
|
|
1425
|
-
"
|
|
1424
|
+
"shape": "DuplicateResult<ExternalProduct>",
|
|
1425
|
+
"description": "Duplicate ExternalProduct"
|
|
1426
1426
|
},
|
|
1427
1427
|
"deleteExternalProduct": {
|
|
1428
|
-
"
|
|
1428
|
+
"args": "DeleteArgs<ExternalProduct>",
|
|
1429
1429
|
"resolver": {
|
|
1430
1430
|
"name": "takeshape:delete",
|
|
1431
1431
|
"service": "takeshape:local",
|
|
1432
1432
|
"shapeName": "ExternalProduct"
|
|
1433
1433
|
},
|
|
1434
|
-
"
|
|
1435
|
-
"
|
|
1434
|
+
"shape": "DeleteResult<ExternalProduct>",
|
|
1435
|
+
"description": "Delete ExternalProduct"
|
|
1436
1436
|
},
|
|
1437
1437
|
"updateVideoType": {
|
|
1438
|
-
"
|
|
1438
|
+
"args": "UpdateArgs<VideoType>",
|
|
1439
1439
|
"resolver": {
|
|
1440
1440
|
"name": "takeshape:update",
|
|
1441
1441
|
"service": "takeshape:local",
|
|
1442
1442
|
"shapeName": "VideoType"
|
|
1443
1443
|
},
|
|
1444
|
-
"
|
|
1445
|
-
"
|
|
1444
|
+
"shape": "UpdateResult<VideoType>",
|
|
1445
|
+
"description": "Update VideoType"
|
|
1446
1446
|
},
|
|
1447
1447
|
"createVideoType": {
|
|
1448
|
-
"
|
|
1448
|
+
"args": "CreateArgs<VideoType>",
|
|
1449
1449
|
"resolver": {
|
|
1450
1450
|
"name": "takeshape:create",
|
|
1451
1451
|
"service": "takeshape:local",
|
|
1452
1452
|
"shapeName": "VideoType"
|
|
1453
1453
|
},
|
|
1454
|
-
"
|
|
1455
|
-
"
|
|
1454
|
+
"shape": "CreateResult<VideoType>",
|
|
1455
|
+
"description": "Create VideoType"
|
|
1456
1456
|
},
|
|
1457
1457
|
"duplicateVideoType": {
|
|
1458
|
-
"
|
|
1458
|
+
"args": "DuplicateArgs<VideoType>",
|
|
1459
1459
|
"resolver": {
|
|
1460
1460
|
"name": "takeshape:duplicate",
|
|
1461
1461
|
"service": "takeshape:local",
|
|
1462
1462
|
"shapeName": "VideoType"
|
|
1463
1463
|
},
|
|
1464
|
-
"
|
|
1465
|
-
"
|
|
1464
|
+
"shape": "DuplicateResult<VideoType>",
|
|
1465
|
+
"description": "Duplicate VideoType"
|
|
1466
1466
|
},
|
|
1467
1467
|
"deleteVideoType": {
|
|
1468
|
-
"
|
|
1468
|
+
"args": "DeleteArgs<VideoType>",
|
|
1469
1469
|
"resolver": {
|
|
1470
1470
|
"name": "takeshape:delete",
|
|
1471
1471
|
"service": "takeshape:local",
|
|
1472
1472
|
"shapeName": "VideoType"
|
|
1473
1473
|
},
|
|
1474
|
-
"
|
|
1475
|
-
"
|
|
1474
|
+
"shape": "DeleteResult<VideoType>",
|
|
1475
|
+
"description": "Delete VideoType"
|
|
1476
1476
|
},
|
|
1477
1477
|
"updateCategory": {
|
|
1478
|
-
"
|
|
1478
|
+
"args": "UpdateArgs<Category>",
|
|
1479
1479
|
"resolver": {
|
|
1480
1480
|
"name": "takeshape:update",
|
|
1481
1481
|
"service": "takeshape:local",
|
|
1482
1482
|
"shapeName": "Category"
|
|
1483
1483
|
},
|
|
1484
|
-
"
|
|
1485
|
-
"
|
|
1484
|
+
"shape": "UpdateResult<Category>",
|
|
1485
|
+
"description": "Update Category"
|
|
1486
1486
|
},
|
|
1487
1487
|
"createCategory": {
|
|
1488
|
-
"
|
|
1488
|
+
"args": "CreateArgs<Category>",
|
|
1489
1489
|
"resolver": {
|
|
1490
1490
|
"name": "takeshape:create",
|
|
1491
1491
|
"service": "takeshape:local",
|
|
1492
1492
|
"shapeName": "Category"
|
|
1493
1493
|
},
|
|
1494
|
-
"
|
|
1495
|
-
"
|
|
1494
|
+
"shape": "CreateResult<Category>",
|
|
1495
|
+
"description": "Create Category"
|
|
1496
1496
|
},
|
|
1497
1497
|
"duplicateCategory": {
|
|
1498
|
-
"
|
|
1498
|
+
"args": "DuplicateArgs<Category>",
|
|
1499
1499
|
"resolver": {
|
|
1500
1500
|
"name": "takeshape:duplicate",
|
|
1501
1501
|
"service": "takeshape:local",
|
|
1502
1502
|
"shapeName": "Category"
|
|
1503
1503
|
},
|
|
1504
|
-
"
|
|
1505
|
-
"
|
|
1504
|
+
"shape": "DuplicateResult<Category>",
|
|
1505
|
+
"description": "Duplicate Category"
|
|
1506
1506
|
},
|
|
1507
1507
|
"deleteCategory": {
|
|
1508
|
-
"
|
|
1508
|
+
"args": "DeleteArgs<Category>",
|
|
1509
1509
|
"resolver": {
|
|
1510
1510
|
"name": "takeshape:delete",
|
|
1511
1511
|
"service": "takeshape:local",
|
|
1512
1512
|
"shapeName": "Category"
|
|
1513
1513
|
},
|
|
1514
|
-
"
|
|
1515
|
-
"
|
|
1514
|
+
"shape": "DeleteResult<Category>",
|
|
1515
|
+
"description": "Delete Category"
|
|
1516
1516
|
},
|
|
1517
1517
|
"updateCollateralType": {
|
|
1518
|
-
"
|
|
1518
|
+
"args": "UpdateArgs<CollateralType>",
|
|
1519
1519
|
"resolver": {
|
|
1520
1520
|
"name": "takeshape:update",
|
|
1521
1521
|
"service": "takeshape:local",
|
|
1522
1522
|
"shapeName": "CollateralType"
|
|
1523
1523
|
},
|
|
1524
|
-
"
|
|
1525
|
-
"
|
|
1524
|
+
"shape": "UpdateResult<CollateralType>",
|
|
1525
|
+
"description": "Update CollateralType"
|
|
1526
1526
|
},
|
|
1527
1527
|
"createCollateralType": {
|
|
1528
|
-
"
|
|
1528
|
+
"args": "CreateArgs<CollateralType>",
|
|
1529
1529
|
"resolver": {
|
|
1530
1530
|
"name": "takeshape:create",
|
|
1531
1531
|
"service": "takeshape:local",
|
|
1532
1532
|
"shapeName": "CollateralType"
|
|
1533
1533
|
},
|
|
1534
|
-
"
|
|
1535
|
-
"
|
|
1534
|
+
"shape": "CreateResult<CollateralType>",
|
|
1535
|
+
"description": "Create CollateralType"
|
|
1536
1536
|
},
|
|
1537
1537
|
"duplicateCollateralType": {
|
|
1538
|
-
"
|
|
1538
|
+
"args": "DuplicateArgs<CollateralType>",
|
|
1539
1539
|
"resolver": {
|
|
1540
1540
|
"name": "takeshape:duplicate",
|
|
1541
1541
|
"service": "takeshape:local",
|
|
1542
1542
|
"shapeName": "CollateralType"
|
|
1543
1543
|
},
|
|
1544
|
-
"
|
|
1545
|
-
"
|
|
1544
|
+
"shape": "DuplicateResult<CollateralType>",
|
|
1545
|
+
"description": "Duplicate CollateralType"
|
|
1546
1546
|
},
|
|
1547
1547
|
"deleteCollateralType": {
|
|
1548
|
-
"
|
|
1548
|
+
"args": "DeleteArgs<CollateralType>",
|
|
1549
1549
|
"resolver": {
|
|
1550
1550
|
"name": "takeshape:delete",
|
|
1551
1551
|
"service": "takeshape:local",
|
|
1552
1552
|
"shapeName": "CollateralType"
|
|
1553
1553
|
},
|
|
1554
|
-
"
|
|
1555
|
-
"
|
|
1554
|
+
"shape": "DeleteResult<CollateralType>",
|
|
1555
|
+
"description": "Delete CollateralType"
|
|
1556
1556
|
},
|
|
1557
1557
|
"updateExternalAppCategory": {
|
|
1558
|
-
"
|
|
1558
|
+
"args": "UpdateArgs<ExternalAppCategory>",
|
|
1559
1559
|
"resolver": {
|
|
1560
1560
|
"name": "takeshape:update",
|
|
1561
1561
|
"service": "takeshape:local",
|
|
1562
1562
|
"shapeName": "ExternalAppCategory"
|
|
1563
1563
|
},
|
|
1564
|
-
"
|
|
1565
|
-
"
|
|
1564
|
+
"shape": "UpdateResult<ExternalAppCategory>",
|
|
1565
|
+
"description": "Update ExternalAppCategory"
|
|
1566
1566
|
},
|
|
1567
1567
|
"createExternalAppCategory": {
|
|
1568
|
-
"
|
|
1568
|
+
"args": "CreateArgs<ExternalAppCategory>",
|
|
1569
1569
|
"resolver": {
|
|
1570
1570
|
"name": "takeshape:create",
|
|
1571
1571
|
"service": "takeshape:local",
|
|
1572
1572
|
"shapeName": "ExternalAppCategory"
|
|
1573
1573
|
},
|
|
1574
|
-
"
|
|
1575
|
-
"
|
|
1574
|
+
"shape": "CreateResult<ExternalAppCategory>",
|
|
1575
|
+
"description": "Create ExternalAppCategory"
|
|
1576
1576
|
},
|
|
1577
1577
|
"duplicateExternalAppCategory": {
|
|
1578
|
-
"
|
|
1578
|
+
"args": "DuplicateArgs<ExternalAppCategory>",
|
|
1579
1579
|
"resolver": {
|
|
1580
1580
|
"name": "takeshape:duplicate",
|
|
1581
1581
|
"service": "takeshape:local",
|
|
1582
1582
|
"shapeName": "ExternalAppCategory"
|
|
1583
1583
|
},
|
|
1584
|
-
"
|
|
1585
|
-
"
|
|
1584
|
+
"shape": "DuplicateResult<ExternalAppCategory>",
|
|
1585
|
+
"description": "Duplicate ExternalAppCategory"
|
|
1586
1586
|
},
|
|
1587
1587
|
"deleteExternalAppCategory": {
|
|
1588
|
-
"
|
|
1588
|
+
"args": "DeleteArgs<ExternalAppCategory>",
|
|
1589
1589
|
"resolver": {
|
|
1590
1590
|
"name": "takeshape:delete",
|
|
1591
1591
|
"service": "takeshape:local",
|
|
1592
1592
|
"shapeName": "ExternalAppCategory"
|
|
1593
1593
|
},
|
|
1594
|
-
"
|
|
1595
|
-
"
|
|
1594
|
+
"shape": "DeleteResult<ExternalAppCategory>",
|
|
1595
|
+
"description": "Delete ExternalAppCategory"
|
|
1596
1596
|
},
|
|
1597
1597
|
"updateVendor": {
|
|
1598
|
-
"
|
|
1598
|
+
"args": "UpdateArgs<Vendor>",
|
|
1599
1599
|
"resolver": {
|
|
1600
1600
|
"name": "takeshape:update",
|
|
1601
1601
|
"service": "takeshape:local",
|
|
1602
1602
|
"shapeName": "Vendor"
|
|
1603
1603
|
},
|
|
1604
|
-
"
|
|
1605
|
-
"
|
|
1604
|
+
"shape": "UpdateResult<Vendor>",
|
|
1605
|
+
"description": "Update Vendor"
|
|
1606
1606
|
},
|
|
1607
1607
|
"createVendor": {
|
|
1608
|
-
"
|
|
1608
|
+
"args": "CreateArgs<Vendor>",
|
|
1609
1609
|
"resolver": {
|
|
1610
1610
|
"name": "takeshape:create",
|
|
1611
1611
|
"service": "takeshape:local",
|
|
1612
1612
|
"shapeName": "Vendor"
|
|
1613
1613
|
},
|
|
1614
|
-
"
|
|
1615
|
-
"
|
|
1614
|
+
"shape": "CreateResult<Vendor>",
|
|
1615
|
+
"description": "Create Vendor"
|
|
1616
1616
|
},
|
|
1617
1617
|
"duplicateVendor": {
|
|
1618
|
-
"
|
|
1618
|
+
"args": "DuplicateArgs<Vendor>",
|
|
1619
1619
|
"resolver": {
|
|
1620
1620
|
"name": "takeshape:duplicate",
|
|
1621
1621
|
"service": "takeshape:local",
|
|
1622
1622
|
"shapeName": "Vendor"
|
|
1623
1623
|
},
|
|
1624
|
-
"
|
|
1625
|
-
"
|
|
1624
|
+
"shape": "DuplicateResult<Vendor>",
|
|
1625
|
+
"description": "Duplicate Vendor"
|
|
1626
1626
|
},
|
|
1627
1627
|
"deleteVendor": {
|
|
1628
|
-
"
|
|
1628
|
+
"args": "DeleteArgs<Vendor>",
|
|
1629
1629
|
"resolver": {
|
|
1630
1630
|
"name": "takeshape:delete",
|
|
1631
1631
|
"service": "takeshape:local",
|
|
1632
1632
|
"shapeName": "Vendor"
|
|
1633
1633
|
},
|
|
1634
|
-
"
|
|
1635
|
-
"
|
|
1634
|
+
"shape": "DeleteResult<Vendor>",
|
|
1635
|
+
"description": "Delete Vendor"
|
|
1636
1636
|
},
|
|
1637
1637
|
"updateSolutionRevision": {
|
|
1638
|
-
"
|
|
1638
|
+
"args": "UpdateArgs<SolutionRevision>",
|
|
1639
1639
|
"resolver": {
|
|
1640
1640
|
"name": "takeshape:update",
|
|
1641
1641
|
"service": "takeshape:local",
|
|
1642
1642
|
"shapeName": "SolutionRevision"
|
|
1643
1643
|
},
|
|
1644
|
-
"
|
|
1645
|
-
"
|
|
1644
|
+
"shape": "UpdateResult<SolutionRevision>",
|
|
1645
|
+
"description": "Update SolutionRevision"
|
|
1646
1646
|
},
|
|
1647
1647
|
"createSolutionRevision": {
|
|
1648
|
-
"
|
|
1648
|
+
"args": "CreateArgs<SolutionRevision>",
|
|
1649
1649
|
"resolver": {
|
|
1650
1650
|
"name": "takeshape:create",
|
|
1651
1651
|
"service": "takeshape:local",
|
|
1652
1652
|
"shapeName": "SolutionRevision"
|
|
1653
1653
|
},
|
|
1654
|
-
"
|
|
1655
|
-
"
|
|
1654
|
+
"shape": "CreateResult<SolutionRevision>",
|
|
1655
|
+
"description": "Create SolutionRevision"
|
|
1656
1656
|
},
|
|
1657
1657
|
"duplicateSolutionRevision": {
|
|
1658
|
-
"
|
|
1658
|
+
"args": "DuplicateArgs<SolutionRevision>",
|
|
1659
1659
|
"resolver": {
|
|
1660
1660
|
"name": "takeshape:duplicate",
|
|
1661
1661
|
"service": "takeshape:local",
|
|
1662
1662
|
"shapeName": "SolutionRevision"
|
|
1663
1663
|
},
|
|
1664
|
-
"
|
|
1665
|
-
"
|
|
1664
|
+
"shape": "DuplicateResult<SolutionRevision>",
|
|
1665
|
+
"description": "Duplicate SolutionRevision"
|
|
1666
1666
|
},
|
|
1667
1667
|
"deleteSolutionRevision": {
|
|
1668
|
-
"
|
|
1668
|
+
"args": "DeleteArgs<SolutionRevision>",
|
|
1669
1669
|
"resolver": {
|
|
1670
1670
|
"name": "takeshape:delete",
|
|
1671
1671
|
"service": "takeshape:local",
|
|
1672
1672
|
"shapeName": "SolutionRevision"
|
|
1673
1673
|
},
|
|
1674
|
-
"
|
|
1675
|
-
"
|
|
1674
|
+
"shape": "DeleteResult<SolutionRevision>",
|
|
1675
|
+
"description": "Delete SolutionRevision"
|
|
1676
1676
|
},
|
|
1677
1677
|
"updatePracticeArea": {
|
|
1678
|
-
"
|
|
1678
|
+
"args": "UpdateArgs<PracticeArea>",
|
|
1679
1679
|
"resolver": {
|
|
1680
1680
|
"name": "takeshape:update",
|
|
1681
1681
|
"service": "takeshape:local",
|
|
1682
1682
|
"shapeName": "PracticeArea"
|
|
1683
1683
|
},
|
|
1684
|
-
"
|
|
1685
|
-
"
|
|
1684
|
+
"shape": "UpdateResult<PracticeArea>",
|
|
1685
|
+
"description": "Update PracticeArea"
|
|
1686
1686
|
},
|
|
1687
1687
|
"createPracticeArea": {
|
|
1688
|
-
"
|
|
1688
|
+
"args": "CreateArgs<PracticeArea>",
|
|
1689
1689
|
"resolver": {
|
|
1690
1690
|
"name": "takeshape:create",
|
|
1691
1691
|
"service": "takeshape:local",
|
|
1692
1692
|
"shapeName": "PracticeArea"
|
|
1693
1693
|
},
|
|
1694
|
-
"
|
|
1695
|
-
"
|
|
1694
|
+
"shape": "CreateResult<PracticeArea>",
|
|
1695
|
+
"description": "Create PracticeArea"
|
|
1696
1696
|
},
|
|
1697
1697
|
"duplicatePracticeArea": {
|
|
1698
|
-
"
|
|
1698
|
+
"args": "DuplicateArgs<PracticeArea>",
|
|
1699
1699
|
"resolver": {
|
|
1700
1700
|
"name": "takeshape:duplicate",
|
|
1701
1701
|
"service": "takeshape:local",
|
|
1702
1702
|
"shapeName": "PracticeArea"
|
|
1703
1703
|
},
|
|
1704
|
-
"
|
|
1705
|
-
"
|
|
1704
|
+
"shape": "DuplicateResult<PracticeArea>",
|
|
1705
|
+
"description": "Duplicate PracticeArea"
|
|
1706
1706
|
},
|
|
1707
1707
|
"deletePracticeArea": {
|
|
1708
|
-
"
|
|
1708
|
+
"args": "DeleteArgs<PracticeArea>",
|
|
1709
1709
|
"resolver": {
|
|
1710
1710
|
"name": "takeshape:delete",
|
|
1711
1711
|
"service": "takeshape:local",
|
|
1712
1712
|
"shapeName": "PracticeArea"
|
|
1713
1713
|
},
|
|
1714
|
-
"
|
|
1715
|
-
"
|
|
1714
|
+
"shape": "DeleteResult<PracticeArea>",
|
|
1715
|
+
"description": "Delete PracticeArea"
|
|
1716
1716
|
},
|
|
1717
1717
|
"updateImageType": {
|
|
1718
|
-
"
|
|
1718
|
+
"args": "UpdateArgs<ImageType>",
|
|
1719
1719
|
"resolver": {
|
|
1720
1720
|
"name": "takeshape:update",
|
|
1721
1721
|
"service": "takeshape:local",
|
|
1722
1722
|
"shapeName": "ImageType"
|
|
1723
1723
|
},
|
|
1724
|
-
"
|
|
1725
|
-
"
|
|
1724
|
+
"shape": "UpdateResult<ImageType>",
|
|
1725
|
+
"description": "Update ImageType"
|
|
1726
1726
|
},
|
|
1727
1727
|
"createImageType": {
|
|
1728
|
-
"
|
|
1728
|
+
"args": "CreateArgs<ImageType>",
|
|
1729
1729
|
"resolver": {
|
|
1730
1730
|
"name": "takeshape:create",
|
|
1731
1731
|
"service": "takeshape:local",
|
|
1732
1732
|
"shapeName": "ImageType"
|
|
1733
1733
|
},
|
|
1734
|
-
"
|
|
1735
|
-
"
|
|
1734
|
+
"shape": "CreateResult<ImageType>",
|
|
1735
|
+
"description": "Create ImageType"
|
|
1736
1736
|
},
|
|
1737
1737
|
"duplicateImageType": {
|
|
1738
|
-
"
|
|
1738
|
+
"args": "DuplicateArgs<ImageType>",
|
|
1739
1739
|
"resolver": {
|
|
1740
1740
|
"name": "takeshape:duplicate",
|
|
1741
1741
|
"service": "takeshape:local",
|
|
1742
1742
|
"shapeName": "ImageType"
|
|
1743
1743
|
},
|
|
1744
|
-
"
|
|
1745
|
-
"
|
|
1744
|
+
"shape": "DuplicateResult<ImageType>",
|
|
1745
|
+
"description": "Duplicate ImageType"
|
|
1746
1746
|
},
|
|
1747
1747
|
"deleteImageType": {
|
|
1748
|
-
"
|
|
1748
|
+
"args": "DeleteArgs<ImageType>",
|
|
1749
1749
|
"resolver": {
|
|
1750
1750
|
"name": "takeshape:delete",
|
|
1751
1751
|
"service": "takeshape:local",
|
|
1752
1752
|
"shapeName": "ImageType"
|
|
1753
1753
|
},
|
|
1754
|
-
"
|
|
1755
|
-
"
|
|
1754
|
+
"shape": "DeleteResult<ImageType>",
|
|
1755
|
+
"description": "Delete ImageType"
|
|
1756
1756
|
},
|
|
1757
1757
|
"updateTechnology": {
|
|
1758
|
-
"
|
|
1758
|
+
"args": "UpdateArgs<Technology>",
|
|
1759
1759
|
"resolver": {
|
|
1760
1760
|
"name": "takeshape:update",
|
|
1761
1761
|
"service": "takeshape:local",
|
|
1762
1762
|
"shapeName": "Technology"
|
|
1763
1763
|
},
|
|
1764
|
-
"
|
|
1765
|
-
"
|
|
1764
|
+
"shape": "UpdateResult<Technology>",
|
|
1765
|
+
"description": "Update Technology"
|
|
1766
1766
|
},
|
|
1767
1767
|
"createTechnology": {
|
|
1768
|
-
"
|
|
1768
|
+
"args": "CreateArgs<Technology>",
|
|
1769
1769
|
"resolver": {
|
|
1770
1770
|
"name": "takeshape:create",
|
|
1771
1771
|
"service": "takeshape:local",
|
|
1772
1772
|
"shapeName": "Technology"
|
|
1773
1773
|
},
|
|
1774
|
-
"
|
|
1775
|
-
"
|
|
1774
|
+
"shape": "CreateResult<Technology>",
|
|
1775
|
+
"description": "Create Technology"
|
|
1776
1776
|
},
|
|
1777
1777
|
"duplicateTechnology": {
|
|
1778
|
-
"
|
|
1778
|
+
"args": "DuplicateArgs<Technology>",
|
|
1779
1779
|
"resolver": {
|
|
1780
1780
|
"name": "takeshape:duplicate",
|
|
1781
1781
|
"service": "takeshape:local",
|
|
1782
1782
|
"shapeName": "Technology"
|
|
1783
1783
|
},
|
|
1784
|
-
"
|
|
1785
|
-
"
|
|
1784
|
+
"shape": "DuplicateResult<Technology>",
|
|
1785
|
+
"description": "Duplicate Technology"
|
|
1786
1786
|
},
|
|
1787
1787
|
"deleteTechnology": {
|
|
1788
|
-
"
|
|
1788
|
+
"args": "DeleteArgs<Technology>",
|
|
1789
1789
|
"resolver": {
|
|
1790
1790
|
"name": "takeshape:delete",
|
|
1791
1791
|
"service": "takeshape:local",
|
|
1792
1792
|
"shapeName": "Technology"
|
|
1793
1793
|
},
|
|
1794
|
-
"
|
|
1795
|
-
"
|
|
1794
|
+
"shape": "DeleteResult<Technology>",
|
|
1795
|
+
"description": "Delete Technology"
|
|
1796
1796
|
},
|
|
1797
1797
|
"updateSolution": {
|
|
1798
|
-
"
|
|
1798
|
+
"args": "UpdateArgs<Solution>",
|
|
1799
1799
|
"resolver": {
|
|
1800
1800
|
"name": "takeshape:update",
|
|
1801
1801
|
"service": "takeshape:local",
|
|
1802
1802
|
"shapeName": "Solution"
|
|
1803
1803
|
},
|
|
1804
|
-
"
|
|
1805
|
-
"
|
|
1804
|
+
"shape": "UpdateResult<Solution>",
|
|
1805
|
+
"description": "Update Solution"
|
|
1806
1806
|
},
|
|
1807
1807
|
"createSolution": {
|
|
1808
|
-
"
|
|
1808
|
+
"args": "CreateArgs<Solution>",
|
|
1809
1809
|
"resolver": {
|
|
1810
1810
|
"name": "takeshape:create",
|
|
1811
1811
|
"service": "takeshape:local",
|
|
1812
1812
|
"shapeName": "Solution"
|
|
1813
1813
|
},
|
|
1814
|
-
"
|
|
1815
|
-
"
|
|
1814
|
+
"shape": "CreateResult<Solution>",
|
|
1815
|
+
"description": "Create Solution"
|
|
1816
1816
|
},
|
|
1817
1817
|
"duplicateSolution": {
|
|
1818
|
-
"
|
|
1818
|
+
"args": "DuplicateArgs<Solution>",
|
|
1819
1819
|
"resolver": {
|
|
1820
1820
|
"name": "takeshape:duplicate",
|
|
1821
1821
|
"service": "takeshape:local",
|
|
1822
1822
|
"shapeName": "Solution"
|
|
1823
1823
|
},
|
|
1824
|
-
"
|
|
1825
|
-
"
|
|
1824
|
+
"shape": "DuplicateResult<Solution>",
|
|
1825
|
+
"description": "Duplicate Solution"
|
|
1826
1826
|
},
|
|
1827
1827
|
"deleteSolution": {
|
|
1828
|
-
"
|
|
1828
|
+
"args": "DeleteArgs<Solution>",
|
|
1829
1829
|
"resolver": {
|
|
1830
1830
|
"name": "takeshape:delete",
|
|
1831
1831
|
"service": "takeshape:local",
|
|
1832
1832
|
"shapeName": "Solution"
|
|
1833
1833
|
},
|
|
1834
|
-
"
|
|
1835
|
-
"
|
|
1834
|
+
"shape": "DeleteResult<Solution>",
|
|
1835
|
+
"description": "Delete Solution"
|
|
1836
1836
|
}
|
|
1837
1837
|
},
|
|
1838
1838
|
"shapes": {
|
|
@@ -4189,6 +4189,6 @@
|
|
|
4189
4189
|
}
|
|
4190
4190
|
}
|
|
4191
4191
|
},
|
|
4192
|
-
"schemaVersion": "3.18.
|
|
4192
|
+
"schemaVersion": "3.18.1",
|
|
4193
4193
|
"services": {}
|
|
4194
|
-
}
|
|
4194
|
+
}
|