cooptypes 1.0.20 → 1.0.21
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/index.cjs +6 -6
- package/dist/index.d.cts +11 -11
- package/dist/index.d.mts +11 -11
- package/dist/index.d.ts +11 -11
- package/dist/index.mjs +6 -6
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -988,7 +988,7 @@ const authorizations$1p = [
|
|
|
988
988
|
];
|
|
989
989
|
const actionName$1p = "createprog";
|
|
990
990
|
|
|
991
|
-
const
|
|
991
|
+
const createProgram = {
|
|
992
992
|
__proto__: null,
|
|
993
993
|
actionName: actionName$1p,
|
|
994
994
|
authorizations: authorizations$1p
|
|
@@ -999,7 +999,7 @@ const authorizations$1o = [
|
|
|
999
999
|
];
|
|
1000
1000
|
const actionName$1o = "editprog";
|
|
1001
1001
|
|
|
1002
|
-
const
|
|
1002
|
+
const editProgram = {
|
|
1003
1003
|
__proto__: null,
|
|
1004
1004
|
actionName: actionName$1o,
|
|
1005
1005
|
authorizations: authorizations$1o
|
|
@@ -1010,7 +1010,7 @@ const authorizations$1n = [
|
|
|
1010
1010
|
];
|
|
1011
1011
|
const actionName$1n = "disableprog";
|
|
1012
1012
|
|
|
1013
|
-
const
|
|
1013
|
+
const disableProgram = {
|
|
1014
1014
|
__proto__: null,
|
|
1015
1015
|
actionName: actionName$1n,
|
|
1016
1016
|
authorizations: authorizations$1n
|
|
@@ -1029,9 +1029,9 @@ const joinProgram = {
|
|
|
1029
1029
|
|
|
1030
1030
|
const index$n = {
|
|
1031
1031
|
__proto__: null,
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1032
|
+
CreateProgram: createProgram,
|
|
1033
|
+
DisableProgram: disableProgram,
|
|
1034
|
+
EditProgram: editProgram,
|
|
1035
1035
|
JoinProgram: joinProgram
|
|
1036
1036
|
};
|
|
1037
1037
|
|
package/dist/index.d.cts
CHANGED
|
@@ -3090,9 +3090,9 @@ declare const actionName$1p = "createprog";
|
|
|
3090
3090
|
*/
|
|
3091
3091
|
type ICreateProgram = ICreateprog;
|
|
3092
3092
|
|
|
3093
|
-
type
|
|
3094
|
-
declare namespace
|
|
3095
|
-
export { type
|
|
3093
|
+
type createProgram_ICreateProgram = ICreateProgram;
|
|
3094
|
+
declare namespace createProgram {
|
|
3095
|
+
export { type createProgram_ICreateProgram as ICreateProgram, actionName$1p as actionName, authorizations$1p as authorizations };
|
|
3096
3096
|
}
|
|
3097
3097
|
|
|
3098
3098
|
/**
|
|
@@ -3112,9 +3112,9 @@ declare const actionName$1o = "editprog";
|
|
|
3112
3112
|
*/
|
|
3113
3113
|
type IEditMarketProgram = IEditprog;
|
|
3114
3114
|
|
|
3115
|
-
type
|
|
3116
|
-
declare namespace
|
|
3117
|
-
export { type
|
|
3115
|
+
type editProgram_IEditMarketProgram = IEditMarketProgram;
|
|
3116
|
+
declare namespace editProgram {
|
|
3117
|
+
export { type editProgram_IEditMarketProgram as IEditMarketProgram, actionName$1o as actionName, authorizations$1o as authorizations };
|
|
3118
3118
|
}
|
|
3119
3119
|
|
|
3120
3120
|
/**
|
|
@@ -3134,9 +3134,9 @@ declare const actionName$1n = "disableprog";
|
|
|
3134
3134
|
*/
|
|
3135
3135
|
type IDisableMarketProgram = IDisableprog;
|
|
3136
3136
|
|
|
3137
|
-
type
|
|
3138
|
-
declare namespace
|
|
3139
|
-
export { type
|
|
3137
|
+
type disableProgram_IDisableMarketProgram = IDisableMarketProgram;
|
|
3138
|
+
declare namespace disableProgram {
|
|
3139
|
+
export { type disableProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$1n as actionName, authorizations$1n as authorizations };
|
|
3140
3140
|
}
|
|
3141
3141
|
|
|
3142
3142
|
/**
|
|
@@ -3161,11 +3161,11 @@ declare namespace joinProgram {
|
|
|
3161
3161
|
}
|
|
3162
3162
|
|
|
3163
3163
|
/**
|
|
3164
|
-
* Действие создаёт целевую потребительскую
|
|
3164
|
+
* Действие создаёт целевую потребительскую маркетплейса.
|
|
3165
3165
|
*/
|
|
3166
3166
|
|
|
3167
3167
|
declare namespace index$n {
|
|
3168
|
-
export {
|
|
3168
|
+
export { createProgram as CreateProgram, disableProgram as DisableProgram, editProgram as EditProgram, joinProgram as JoinProgram };
|
|
3169
3169
|
}
|
|
3170
3170
|
|
|
3171
3171
|
/**
|
package/dist/index.d.mts
CHANGED
|
@@ -3090,9 +3090,9 @@ declare const actionName$1p = "createprog";
|
|
|
3090
3090
|
*/
|
|
3091
3091
|
type ICreateProgram = ICreateprog;
|
|
3092
3092
|
|
|
3093
|
-
type
|
|
3094
|
-
declare namespace
|
|
3095
|
-
export { type
|
|
3093
|
+
type createProgram_ICreateProgram = ICreateProgram;
|
|
3094
|
+
declare namespace createProgram {
|
|
3095
|
+
export { type createProgram_ICreateProgram as ICreateProgram, actionName$1p as actionName, authorizations$1p as authorizations };
|
|
3096
3096
|
}
|
|
3097
3097
|
|
|
3098
3098
|
/**
|
|
@@ -3112,9 +3112,9 @@ declare const actionName$1o = "editprog";
|
|
|
3112
3112
|
*/
|
|
3113
3113
|
type IEditMarketProgram = IEditprog;
|
|
3114
3114
|
|
|
3115
|
-
type
|
|
3116
|
-
declare namespace
|
|
3117
|
-
export { type
|
|
3115
|
+
type editProgram_IEditMarketProgram = IEditMarketProgram;
|
|
3116
|
+
declare namespace editProgram {
|
|
3117
|
+
export { type editProgram_IEditMarketProgram as IEditMarketProgram, actionName$1o as actionName, authorizations$1o as authorizations };
|
|
3118
3118
|
}
|
|
3119
3119
|
|
|
3120
3120
|
/**
|
|
@@ -3134,9 +3134,9 @@ declare const actionName$1n = "disableprog";
|
|
|
3134
3134
|
*/
|
|
3135
3135
|
type IDisableMarketProgram = IDisableprog;
|
|
3136
3136
|
|
|
3137
|
-
type
|
|
3138
|
-
declare namespace
|
|
3139
|
-
export { type
|
|
3137
|
+
type disableProgram_IDisableMarketProgram = IDisableMarketProgram;
|
|
3138
|
+
declare namespace disableProgram {
|
|
3139
|
+
export { type disableProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$1n as actionName, authorizations$1n as authorizations };
|
|
3140
3140
|
}
|
|
3141
3141
|
|
|
3142
3142
|
/**
|
|
@@ -3161,11 +3161,11 @@ declare namespace joinProgram {
|
|
|
3161
3161
|
}
|
|
3162
3162
|
|
|
3163
3163
|
/**
|
|
3164
|
-
* Действие создаёт целевую потребительскую
|
|
3164
|
+
* Действие создаёт целевую потребительскую маркетплейса.
|
|
3165
3165
|
*/
|
|
3166
3166
|
|
|
3167
3167
|
declare namespace index$n {
|
|
3168
|
-
export {
|
|
3168
|
+
export { createProgram as CreateProgram, disableProgram as DisableProgram, editProgram as EditProgram, joinProgram as JoinProgram };
|
|
3169
3169
|
}
|
|
3170
3170
|
|
|
3171
3171
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -3090,9 +3090,9 @@ declare const actionName$1p = "createprog";
|
|
|
3090
3090
|
*/
|
|
3091
3091
|
type ICreateProgram = ICreateprog;
|
|
3092
3092
|
|
|
3093
|
-
type
|
|
3094
|
-
declare namespace
|
|
3095
|
-
export { type
|
|
3093
|
+
type createProgram_ICreateProgram = ICreateProgram;
|
|
3094
|
+
declare namespace createProgram {
|
|
3095
|
+
export { type createProgram_ICreateProgram as ICreateProgram, actionName$1p as actionName, authorizations$1p as authorizations };
|
|
3096
3096
|
}
|
|
3097
3097
|
|
|
3098
3098
|
/**
|
|
@@ -3112,9 +3112,9 @@ declare const actionName$1o = "editprog";
|
|
|
3112
3112
|
*/
|
|
3113
3113
|
type IEditMarketProgram = IEditprog;
|
|
3114
3114
|
|
|
3115
|
-
type
|
|
3116
|
-
declare namespace
|
|
3117
|
-
export { type
|
|
3115
|
+
type editProgram_IEditMarketProgram = IEditMarketProgram;
|
|
3116
|
+
declare namespace editProgram {
|
|
3117
|
+
export { type editProgram_IEditMarketProgram as IEditMarketProgram, actionName$1o as actionName, authorizations$1o as authorizations };
|
|
3118
3118
|
}
|
|
3119
3119
|
|
|
3120
3120
|
/**
|
|
@@ -3134,9 +3134,9 @@ declare const actionName$1n = "disableprog";
|
|
|
3134
3134
|
*/
|
|
3135
3135
|
type IDisableMarketProgram = IDisableprog;
|
|
3136
3136
|
|
|
3137
|
-
type
|
|
3138
|
-
declare namespace
|
|
3139
|
-
export { type
|
|
3137
|
+
type disableProgram_IDisableMarketProgram = IDisableMarketProgram;
|
|
3138
|
+
declare namespace disableProgram {
|
|
3139
|
+
export { type disableProgram_IDisableMarketProgram as IDisableMarketProgram, actionName$1n as actionName, authorizations$1n as authorizations };
|
|
3140
3140
|
}
|
|
3141
3141
|
|
|
3142
3142
|
/**
|
|
@@ -3161,11 +3161,11 @@ declare namespace joinProgram {
|
|
|
3161
3161
|
}
|
|
3162
3162
|
|
|
3163
3163
|
/**
|
|
3164
|
-
* Действие создаёт целевую потребительскую
|
|
3164
|
+
* Действие создаёт целевую потребительскую маркетплейса.
|
|
3165
3165
|
*/
|
|
3166
3166
|
|
|
3167
3167
|
declare namespace index$n {
|
|
3168
|
-
export {
|
|
3168
|
+
export { createProgram as CreateProgram, disableProgram as DisableProgram, editProgram as EditProgram, joinProgram as JoinProgram };
|
|
3169
3169
|
}
|
|
3170
3170
|
|
|
3171
3171
|
/**
|
package/dist/index.mjs
CHANGED
|
@@ -986,7 +986,7 @@ const authorizations$1p = [
|
|
|
986
986
|
];
|
|
987
987
|
const actionName$1p = "createprog";
|
|
988
988
|
|
|
989
|
-
const
|
|
989
|
+
const createProgram = {
|
|
990
990
|
__proto__: null,
|
|
991
991
|
actionName: actionName$1p,
|
|
992
992
|
authorizations: authorizations$1p
|
|
@@ -997,7 +997,7 @@ const authorizations$1o = [
|
|
|
997
997
|
];
|
|
998
998
|
const actionName$1o = "editprog";
|
|
999
999
|
|
|
1000
|
-
const
|
|
1000
|
+
const editProgram = {
|
|
1001
1001
|
__proto__: null,
|
|
1002
1002
|
actionName: actionName$1o,
|
|
1003
1003
|
authorizations: authorizations$1o
|
|
@@ -1008,7 +1008,7 @@ const authorizations$1n = [
|
|
|
1008
1008
|
];
|
|
1009
1009
|
const actionName$1n = "disableprog";
|
|
1010
1010
|
|
|
1011
|
-
const
|
|
1011
|
+
const disableProgram = {
|
|
1012
1012
|
__proto__: null,
|
|
1013
1013
|
actionName: actionName$1n,
|
|
1014
1014
|
authorizations: authorizations$1n
|
|
@@ -1027,9 +1027,9 @@ const joinProgram = {
|
|
|
1027
1027
|
|
|
1028
1028
|
const index$n = {
|
|
1029
1029
|
__proto__: null,
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1030
|
+
CreateProgram: createProgram,
|
|
1031
|
+
DisableProgram: disableProgram,
|
|
1032
|
+
EditProgram: editProgram,
|
|
1033
1033
|
JoinProgram: joinProgram
|
|
1034
1034
|
};
|
|
1035
1035
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cooptypes",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.21",
|
|
5
5
|
"description": "_description_",
|
|
6
6
|
"author": "Alex Ant <dacom.dark.sun@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"vite": "^5.2.11",
|
|
66
66
|
"vitest": "^1.5.3"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "bd99697c5b638a3d19ff65be2d4bf5cdf50b4aaf"
|
|
69
69
|
}
|